I'm developing a EJB based system and its divided in four Maven projects:
- EJB
- Remote interfaces
- DTO or Entities (Still not sure about this)
- Spring presentation
So, I've separated the interfaces just to add them as dependency in EJB and presentation project, so avoid the duplication. Unfortunately its not working for me, I get errors deploying the EJB as ClassNotFoundException, the interface is not found at runtime, if I only copy the interface to my EJB project and mvn clean install, deploy the jar again I get a successful deploy.
Here is my interface:
@Remote
public interface LoginBean {
public boolean authorized(String login, String password);
}
My ejb:
@Stateless(name = "LoginBeanImp")
public class LoginBeanImp implements LoginBean {
public boolean authorized(String login, String password) {
...
}
}
and the EJB project POM.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.offdesk.business</groupId>
<artifactId>offdesk-business</artifactId>
<version>0-SNAPSHOT</version>
<name>Office Desk - Business</name>
<dependencies>
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-ejb-client-bom</artifactId>
<version>7.1.1.Final</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.offdesk.entities</groupId>
<artifactId>offdesk-entities</artifactId>
<version>0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.offdesk.beans</groupId>
<artifactId>offdesk-beans</artifactId>
<version>0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
</project>
If you guys have any idea, suggestions or tips for a better solution Ill be happy to read.