Tagged Questions
An Enterprise Archive, or EAR, is a file format used by Java EE for packaging one or more modules into a single archive so that the deployment of the various modules onto an application server happens simultaneously and coherently.
6
votes
22answers
22k views
JBoss5: Cannot deploy due to java.util.zip.ZipException: error in opening zip file
I have a web client and a EJB project, which I created with Eclipse 3.4.
When I want to deploy it on Jboss 5.0.1, I receive the error below. I searched a lot but I wasn't able to find a solution to ...
6
votes
4answers
6k views
Can someone give me a working example of a build.xml for an EAR that deploys in WebSphere 6
I'm trying to convince my providers to use ANT instead of Rational Application Development so anyone can recompile, recheck, redeploy the solution anyplace, anytime, anyhow. :P
I started a ...
5
votes
1answer
145 views
Why use an ear instead of a war?
I read this and this which are somewhat related to my question. But I came across this article that says that EJBs can be packaged in a war file. If this is the case, why is there a need for an ear? ...
5
votes
1answer
1k views
Generate Websphere 6.1 compatible EAR file using Maven
I've been looking around for some time and couldn't find a clear explanation for this.
We're using a Websphere server to run a Web application developed using Rational Software Architect 7. This ...
5
votes
2answers
3k views
Removing version number from file name with Maven
I have a project with 5 modules in maven. Right now, when I do a "mvn clean install", it generates an ear containing the two jars, one war and one sar from the other modules.
All the file names ...
5
votes
2answers
21k views
How do I create an EAR file with an ant build including certain files?
I'm using eclipse to build an ear file using ant. I'm using oc4j, and I want to make sure that orion-application.xml is included in the build. What I'm currently using but does not work is:
...
5
votes
5answers
3k views
How can I store JEE configuration parameters outside of an EAR or WAR?
I want to store configuration for a web project outside of the web project (ear/war file).
The application shouldn't know in which container it's running (WebSphere/JBoss etc.).
What is the best way ...
4
votes
1answer
1k views
How to order deployment of EJBs and JMS queue config in JBoss 5?
I'm using JBoss [EAP] 5.0.0.GA and I have an EAR which contains an EJB jar that contains some MDBs which depend on the existence of the JMS queues that they use. When I configured the queues in ...
4
votes
1answer
436 views
sharing common jsp's in multiple wars in an EAR
We have a big application having 13 modules. Depending on the customer requirement, we should able to deploy core module+customer specific modules. We are planning to break the app into multiple wars. ...
4
votes
1answer
3k views
Where do I put weblogic-application.xml in my Maven 2 project?
Where do I put weblogic-application.xml in my Maven 2 project so that Maven places it in META_INF in the target EAR artifact?
4
votes
2answers
3k views
Maven EAR module and EJB dependencies tests
We are building our EAR & EJB projects with maven. It will build all the EJB projects and then they are used as the dependency for EAR, so they are packed into the EAR file eventually.
The ...
4
votes
6answers
3k views
How do you deploy a WAR that's inside an EAR as the root (/) context in Glassfish?
I have an EAR file that contains two WARs, war1.war and war2.war. My application.xml file looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<application version="5" ...
3
votes
1answer
95 views
application.xml is not generated correctly while saying “Run On Server” using Weblogic (beadep)
I always encounter the following situation while "Run On Server" on my mavenized EAR project.
Situation
If I take the following steps on my EAR project:
mvn clean install
Run on Server
... will ...
3
votes
2answers
135 views
Maven - Sharing libraries between projects
I'm working on a multi-project, and right now I have a structure that resembles this (actually there are a couple of jar projects and a couple of war projects)
/myProj
|_______projA (jar)
| ...
3
votes
1answer
70 views
In JBoss 4.2.3 is there any way to change the order that EARDeployer loads/deploys the various .ear files?
I have 3 ear files and I want to control the order they are loaded. Any configuration that I can do to achieve this? (no, I don't want to rename my ears 1.ear 2.ear, etc...)
3
votes
2answers
458 views
Do Maven Multi-Module and EAR play well together?
Today, I've been looking at Maven Multi-Module and EAR projects and they seem quite similar in that both seem to define an assembly of a collection of other projects - it almost seems like an EAR ...
3
votes
1answer
235 views
How do I build a WAS 6.1 specific EAR without RSA/RAD?
Are there some IBM ant tasks that support this?
3
votes
3answers
1k views
When is it appropriate to use an EAR and when should your apps be in WARs?
We have many Spring web applications to make on a WebLogic server and are curious about when WARs should go in an EAR and when they should just exist as WARs. Occassionally, the WARs will need to ...
3
votes
3answers
3k views
How to get current EAR location programmatically with JBoss
Does anyone know how to get programmatically the absolute path in the filesystem for an EAR deployed in JBoss, from Java code within that same EAR?
I need this because I want to copy some files that ...
3
votes
3answers
2k views
How to make maven place all jars common to wars inside the same EAR to EAR root?
We have a solution with numerous wars. Wars are similar in the sense they all use hibernate and spring. This means that we have a number of same jars inside each war. This is becoming a problem, ...
2
votes
3answers
45 views
Tomcat as an Enterpise server
It seems that tomcat is a web application server and EAR cannot be deployed in it. Can it be updated to deploy EAR files. If not what could be the alternate server which is easy to configure and ...
2
votes
2answers
103 views
Spring, JPA, glassfish, EAR, TransactionRequiredException
After nearly 10 hours of searching and trying different things I couldn't figure out, what is main cause of my problem. So, maybe someone could help me here. I'm learning Spring + JPA. I have EAR ...
2
votes
1answer
84 views
Dynamically Get Properties Filename in EJB Jar (deployed in ear)
When creating/deploying war files, I use a in my web.xml to define which property file to use:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" ...
2
votes
2answers
189 views
GlassFish 3.1, how to deploy an EAR with a WAR in root of server?
I have an EAR with a WAR that I'm deploying on GlassFish 3.1
Currently, the application runs at localhost:8080/myapp/index.jsf
I want it to run on localhost:8080/index.jsf
To accomplish this, I ...
2
votes
2answers
131 views
log4j configuration in EAR
I have an EAR composed of ejb.jar archives.
Where can / should I place my log4j.xml configuration file in my EAR in order to configure log4j for the different EJBs?
Here is my following structure:
...
2
votes
1answer
74 views
Classloading in EAR/WAR
Genally, an archive should be able to deployable on any application server as long as it conforms to the packaging standard and not using any app server specific artifacts. But many a times, there is ...
2
votes
2answers
193 views
Gradle - Web Module in deployment descriptor
I am trying to add a web module in an Ear file. I put it in my customized deployment descriptor using webModule(":wars/myweb","/mywebapp"). It is not including the war file in the ear file. It is just ...
2
votes
1answer
36 views
Ear encoding inside the archive
These days, I drove crazy to deploy an ear on unix enviroment using Weblogic.
At the end I realized by using (cat -v file.properties) that such file was full of ^M at the end of the line.
This ...
2
votes
1answer
464 views
Create complete EAR Project with Maven and Eclipse Helios
I read some articles about how to set up eclipse and maven to create a new empty ear project but all solutions weren't complete or are to old.
I believe that I need to create three pom.xml files / or ...
2
votes
1answer
384 views
Configuring Helios WTP utility project's build path with EAR Libraries
I create three projects: An EAR parent project, an EJB child project, and a Utility child Project. I add a jar and the utility project to the "Ear Module Assembly". In both child projects I put the ...
2
votes
1answer
801 views
Maven 2.2.1 fails to build EAR project with m2eclipse
I am having trouble building an EJB EAR with Maven in Eclipse 3.6 with the m2eclipse project builder. Curiously, a manual build (either on the command line or with "Run as -> Maven build") works fine. ...
2
votes
2answers
242 views
Separate same jars in different WAR of a EAR
currently we are facing one problem. We are building a ear which contains multiple war files. In 2 of the WARs contains same jars. Both these wars need these jars during deployment.So Is there any way ...
2
votes
2answers
102 views
How to specify a classpath for a module in application.xml for an EAR
So I have an EAR that contains all of my modules. The shared JARs that are used by all the modules are placed in the default ./lib/ folder of the EAR. I also have multiple version of a JAR file that ...
2
votes
2answers
230 views
create ear in grails
grails supports creation of war. But is there any command to create an ear through grails?
2
votes
4answers
155 views
Sharing JSPs between EARs
Is it possible to share JSPs between EARs, similar to the way that we can share Java files between EARs by using .jar files?
I have a large J2EE app on JBoss with many different EARs, and they all ...
2
votes
1answer
88 views
How to include .rb files that are located into a .EAR file in JRuby?
I have a java application, packaged into a .EAR file, that have code that runs in JRuby using script containers.
The ruby code runs normal, except when it need to require some other files that are ...
2
votes
1answer
135 views
Maven: Use the filtering mechanism for text files not under 'resources'?
I need to customize a number of XML files which are not under resources (in particular, they are under an EAR's project src/main/application).
The filtering mechanism would be perfect for this, but ...
2
votes
1answer
660 views
Deploying a Spring app as ear to Glassfish v3 - Ambiguous DeploymentException “Module type not recognised”
I am trying to deploy an .ear to Glassfish v3. The .ear is a "Spring" application made up of two modules:
domain.jar (entities, persistence)
service.jar (business logic with spring bean config).
...
2
votes
1answer
424 views
Unable to access a read-only Embedded Derby database from within EAR file deployed on JBoss server
I am trying to access a read-only Embedded Derby database. It is available as myDB.jar. This jar has one folder of the Apache Derby database - myDB (log and seg0 folders and service.properties ...
2
votes
3answers
292 views
deployment time of “ear” annoying using jboss,ant, jsp's and prehistoric pc
I am developing a web based java app, running on jboss and sql server.
I seem to find myself spending an inordinate amount of time recompiling/deploying just to tweak the interface in ...
2
votes
2answers
33 views
would maven be a good fit for this scenario?
We currently have an ant based project and are contemplating moving to maven.
The project is java ee based, however it has a module structure where each module can contain multiple java ee projects. ...
2
votes
1answer
923 views
How to enable maven to deploy the ear to the app. server automatically
I am using maven2 with a struts-hibernate jee project and developing with myEclipse.
When I run a maven build, clean&install, it generates myProject.ear under the myProject_ear\target folder as ...
2
votes
1answer
202 views
How to proceed with ear build in maven2?
I very new to maven2. Till yesterday i was successful in building war from maven2. My next target is to build ear file for a war file including few of jar files as well.
Can you please help with ...
2
votes
1answer
228 views
Is there some easy way to execute code upon JBoss deployment of a JAR inside an EAR?
I plan to deploy an EAR packaged application into JBoss v4.2 as a folder containing the content of the EAR. Until now the EAR is deployed as a single file. I hope to be able to replace single JARs ...
2
votes
1answer
270 views
Maven2: Renaming provided dependecies at package phase?
Greetings
I have an ear artifact with a finalName tag in its build definition in the POM.
<artifactId>application-app</artifactId>
...
<build>
...
2
votes
3answers
3k views
How do I build a J2EE EAR file in RAD using Maven?
Using Rational Application Developer to create a J2EE application, I create a project for my EAR and a project for my WAR - following the usual project structure created by RAD.
So, how do I create ...
2
votes
0answers
760 views
Can I make a WAR depend on a JNDI entry in JBoss 5.1?
As part of an upgrade from JBoss 4.0.4 to 5.1, I am trying to get a WAR to deploy after an EAR is successfully deployed. JBoss 5.x does not support PrefixDeploymentSorter like 4.x did, which means ...
2
votes
1answer
615 views
How to programmatically check if an application has deployed in JBoss5?
I am writing a small app to automate deployments. Basically, it checks an ftp server periodically for a new .ear file. Compares the checksum of the remote ftp file against what is currently ...
2
votes
2answers
618 views
Huge EAR deployment
I'm trying to figure out how to deploy a huge (40-50 MB) EAR file to the server through a rather slow VPN connection. The EAR contains EJB and WAR projects created in Glassfish, and 90% of the file ...
2
votes
2answers
3k views
Order of JAR loading inside EAR's APP-INF/lib
Will adding a MANIFEST.MF file with Class-Path attribute to META-INF directory inside EAR influence the order of loading of JARs located in APP-INF/lib under WebLogic 8.1?