Questions tagged [ear]

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.

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. It also contains XML files called deployment descriptors which describe how to deploy the modules.
An EAR file is a standard JAR file (and therefore a Zip file) with a .ear extension, with one or more entries representing the modules of the application, and a metadata directory called META-INF which contains one or more deployment descriptors.

References:

1248 questions
-1
votes
1 answer

Weblogic creating EAR folder in WL_User temp folder

Trying to restart from command line weblogic server but it is picking up EAR file i deployed from Eclipse previously. Thought it was some kinda caching issue so opened/closed eclipse and cmd no help. Still picking up this EAR even when i delete it…
BatBold
  • 21
  • 1
  • 5
-1
votes
1 answer

Enterprise Application Project in Java

I am trying to create a Enterprise Application Project in java. I have learned some basics from http://pl.cs.jhu.edu/oose/resources/j2ee-tutorial/index.php link. Project Structure is as follows: *EAR ( Enterprise Application Project…
-1
votes
1 answer

Deployed EAR can't resolve class

I have an EAR deployed on our development server (WebLogic 10.3.3) that runs fine. Yet, when I take that same EAR and deploy it on a WebLogic 10.3.6 server running on my desktop, the deployment succeeds but I see an error when loading a…
rimsky
  • 1,163
  • 3
  • 16
  • 27
-1
votes
1 answer

how to create single ear using ant for multiple environment

I have a requirement where in we have multiple properties files using which a EAR file is created for different environment like development,production etc. it takes around 45 minutes for the creation of ear in one specific environment which is a…
-1
votes
2 answers

Maven Build Settings.xml

I have two Maven projects, Parent and Child. To build Child I need to mvn install Parent before, so that the EAR produced by Parent is available in my m2 repo. I want to modify the Child build in such a way that it can install the dependent…
Vel
  • 1
  • 1
-1
votes
1 answer

Is there a way create a wsdl from pom data?

I'm wondering if there's a way to create a wsdl from data available in a pom.xml file. Basically, every project we build uses a pom that contains developer information, project information, version information -- all kinds of things that'd be handy…
-1
votes
3 answers

Decompile class, amend and re-add to ear

I have an Ear file. I took a Java class file out, decompiled it and edited it. I now want to recompile the new Java source file and re-add the resulting class file to my new Ear. When I tried to recompile the new Java source file, the compiler…
TheCoder
  • 8,413
  • 15
  • 42
  • 54
-1
votes
1 answer

How can I add a class file into a jar file inside another jar

I have a jar file which contain another jar inside: abc.jar --> a.class, b.jar, c.txt which a.jar --> x.class, y.class I want to add new class file z.class into a.jar & return abc.jar with updated a.jar 1 way is that extract & pack again. Can I do…
Nishantha
  • 87
  • 1
  • 8
-1
votes
1 answer

Cannot deploy .ear file on JBoss 7.1.1

I try to deploy an ear-file containing a war-file on JBoss 7.1.1. The application.xml within the ear's META-INF/ directory looks like this:
Felix Siegrist
  • 275
  • 3
  • 8
-1
votes
1 answer

Ear packing structure for jboss 7

we are using J2EE 1.4, servlet version 1.4 and EJB version 2.1, when i deploy my ear file in jboss 7, which is build by using netbeans 6.9.1. I'm getting exception. Is there any specific deployment configuration for jboss 7, If so kindly help me to…
vairam
  • 471
  • 1
  • 11
  • 26
-2
votes
1 answer

Application deployment failed in websphere 7

org.eclipse.jst.j2ee.commonarchivecore.internal.exception.NoModuleFileException:A file does not exist for module element having uri
santhoshkrishnan
  • 63
  • 1
  • 1
  • 7
-2
votes
1 answer

EJB Pool and EJB defined in 2 EAR

I'm totaly newbie in EJB and i need to understand how "ejb pool" works and how it is shared between EARS. We have an EAR (named "ear1") deployed on WebSphere 8.5. This EAR contains some Stateless EJB3 (test.Ejb1, test.Ejb2, test.Ejb3) used by…
Bart
  • 1
  • 1
-2
votes
1 answer

Can Node js projects be packaged as an EAR file?

I would like to deploy a node js project to Websphere. In order to do this it needs to be in an EAR file format. Is it possible to package Node js projects into EAR files? In development I am familiar with using node package manager, and the command…
-2
votes
2 answers

Can I deploy multiple ears or wars files in Webshpere portal only one time

I have more than 20 ears files and I take a lot of time to deploy each ear alone using Websphere portal, so I'm looking for a solution to deploy all ears only one time.
-2
votes
1 answer

How can I deploy a .EAR file package on wso2as-5.2.1 application server?

I have installed wso2 application server on my lab server, the version used is wso2as-5.2.1. I am experiencing that I can't deploy a .ear, but only a .war file. Could someone help me about?
1 2 3
83
84