Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing a EJB based system and its divided in four Maven projects:

  1. EJB
  2. Remote interfaces
  3. DTO or Entities (Still not sure about this)
  4. 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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.