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 lead to:

The application.xml generated by Maven will be correct:

<application xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd" version="5">
  <display-name>com.company.fbps.api.impl.ear</display-name>
  <module>
    <ejb>com.company.fbps.api.impl.ejb-0.0.1-SNAPSHOT.jar</ejb>
  </module>
</application>

While the EJB project "com.company.fbps.api.impl.ejb" is a maven dependency of the EAR project:

(in "com.company.fbps.api.impl.ejb" pom.xml)

<dependency>
    <groupId>com.company.fbps.api.impl.ejb</groupId>
    <artifactId>com.company.fbps.api.impl.ejb</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <type>ejb</type>
</dependency>

... but the application.xml generated by Run on Server is incorrect:

The Oracle WebLogic Server Plugin will generate a application.xml to:

...\.metadata\.plugins\org.eclipse.core.resources\.projects\com.company.fbps.api.impl.ear\beadep\fbp_local_test\com.company.fbps.api.impl.ear\split_src

.... having the wrong EJB jar name:

<application xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd" version="5">
  <display-name>com.company.fbps.api.impl.ear</display-name>
  <module>
    <ejb>com.company.fbps.api.impl.ejb.jar</ejb>
  </module>
</application>

So in this process some integration is not aware of the fact that Maven generates a different ejb.jar name and this is not used for "Run on Server".

Workaround

I found a workaround to get it somehow running. If you say "Maven - Update Project Configuration ..." before "Run on Server" it works once. But will be corrupt again after the next build.

Used Plugins

  • Oracle WebLogic Server Tools for Eclipse 11.1.1.8.0
  • m2e - Maven Integration for Eclipse 1.0.100.20110804-1717

Question

Do you have any idea how to correct this situation without using my workaround?

link|improve this question
I would not mix Maven and Eclipse building. Use either of two. – antispam Feb 2 at 15:02
feedback

1 Answer

I use the weblogic-maven-plugin to deploy my ear to weblogic. Below is a sample configuration from the pom. this should be on your ear project pom. Make sure the dependencies are added right, the dependencies are not available from maven repository. I had to manually install them and as well the wlfullclient.jar had to be built using the weblogic jarbuilder Once you have the configuration set right create a maven build run configuration with goal weblogic:deploy. This should get the artifact deployed to your weblogic server.

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>weblogic-maven-plugin</artifactId>
<version>2.9.1</version>
<configuration>
  <adminServerHostName>localhost</adminServerHostName>
      <adminServerPort>7001</adminServerPort>
  <userId>${username}</userId>
  <password>${password}</password>
  <upload>false</upload>
  <remote>false</remote>
  <verbose>false</verbose>
  <debug>true</debug>
  <targetNames>${server}</targetNames>
  <exploded>false</exploded>
  </configuration>
<dependencies>
  <dependency>
   <groupId>weblogic</groupId>
   <artifactId>weblogic</artifactId>
   <version>${weblogic.version}</version>
     </dependency>
 <dependency>
  <groupId>weblogic</groupId>
  <artifactId>wlfullclient</artifactId>
  <version>${weblogic.version}</version>
</dependency>
<dependency>
 <groupId>weblogic</groupId>
 <artifactId>webservices</artifactId>
 <version>${weblogic.version}</version>
    </dependency>
<dependency>
 <groupId>org.apache.xmlbeans</groupId>
 <artifactId>xmlbeans</artifactId>
 <version>2.3.0</version>
   </dependency>
  </dependencies>
 </plugin>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.