Questions tagged [jboss-modules]
57 questions
0
votes
2 answers
manifest Class-Path not honored in a Wildfly module
I'm trying to create a Wildfly Module for OpenText Documentum java client. Previously I was packing its jars to the .war file and my app was working, but they weight 23Mb.
In J2SE you usually just add the main jar which is dfc.jar and its…

basin
- 3,949
- 2
- 27
- 63
0
votes
1 answer
cannot find a jboss-as-jpa jar for hibernate 4.3
I was upgrading a hibernate based project from 4.2.0 to 4.3.2. The project is deployed in jboss-eap-6.4 as an .ear
The project works with jboss-as-jpa. I have defined a persistance.xml in the .ear which contains the following property

Alan Lal
- 147
- 2
- 8
0
votes
1 answer
Can't register AWS-SDK on Jboss modules correctly
I found the dependency aws-java-sdk was being compiled on a legacy code, having as result a very heavy EAR.
I declared this dependency as provided and wanted to put it as part of the Jboss modules, but no matter where I put it, I'm still having the…

Rafael
- 104
- 8
0
votes
1 answer
How to implement Dynamic Jasper as JBoss AS 7.2 Static Module?
I have successfully implemented Jasper Report as module but I failed several times when implementing DynamicJasper.
I am trying this implementation with JBoss AS 7.2, Linux CentOS kernel 2.6.32-431.el6.x86_64, and Java 1.7
Below is the module.xml I…

Dwi Santoso
- 51
- 5
0
votes
1 answer
WildFly 14 missing modules : org/apache/commons/configuration
WildFly 14 is missing the org/apache/commons/configuration module in the package , same for wildfly 15.
Is this removed from wildfly distributions for some reason?

Twaha Mehmood
- 737
- 3
- 9
- 26
0
votes
1 answer
what are .jar.index files under Jboss modules folder?
What are .jar.index files under Jboss modules folder? What is their purpose?

Spear A1
- 525
- 1
- 7
- 20
0
votes
1 answer
Order of classloading in JBoss 6.4: Is WEB-INF/classes or modules loaded first?
I have a property file named abc.properties in my WAR's WEB-INF/classes. Also, I have placed it inside a (correctly registered) module. When I then call:
ResourceBundle.getBundle("abc")
which file would be picked?
In our production environment, the…

Daud
- 7,429
- 18
- 68
- 115
0
votes
1 answer
Can I link overlay for war-file in ear file?
I use ovelray in wildfly like this:

Dmitry Uskov
- 13
- 7
0
votes
1 answer
How to excude exports in deployment module (Wildfly)?
I have two war-files: core.war and service.war
Archive core.war includes jboss-deployment-structure.xml:
…

Dmitry Uskov
- 13
- 7
0
votes
0 answers
Adding CDI beans archive from jboss module on the fly
I am building a JEE plugin architecture using wildfly (and jboss modules which included by wildfly core).
currently i got working loading xhtml from other deployed modules (core-web.war loads xhtml files from deployment.customers.jar or any…

adrz1
- 67
- 7
0
votes
1 answer
What is the correct JBoss module dependency to reference org.jboss.resteasy in a static module?
I am attempting to deploy a static module that uses resteasy, which comes pre-installed as a system module:
[me@localhost:3 modules]$ ls -l system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/
total 660K
-rw-r--r-- 1 coer2 admin 7.7K Jun 2 …

Robin Coe
- 750
- 7
- 28
0
votes
1 answer
How to maintain JBoss Modules
Recently, I have had to port an app from Tomcat to Wildfly and I'm currently working on setting up the modules directory for Wildfly.
It took a little bit of learning, but I figured out how to set up Spring, ActiveMQ RA, and several other libs as…

myung
- 1
- 3
0
votes
2 answers
Wildfly modules
I'm trying to move primefaces on wildfly server

LeshaRB
- 1,345
- 2
- 23
- 44
0
votes
0 answers
Deploying Apache FOP to Wildfly
I have a simple MDB that does FO to PDF transformations using Apache FOP. Initially I tried to include FOP as a library in my ear but that failed with class loading error.
From what I can understand, 3rd party libraries need to be created as…

Trevor Charles Miller
- 13
- 1
- 3
0
votes
1 answer
In JBOSS 7 can war file access a jar file located in ear/lib instead of web-inf/lib
I have project structure like below
SOME-EAR/
----- sampleWarOne.war
----- sampleWarTwo.war
inside SOME-EAR I have lib folder SOME-EAR/lib. Is it possible to use jars present in SOME-EAR/lib ? As of now I am picking from WEB-INF/lib, but some of…

Shahbaz
- 141
- 2
- 7