How to Fix Javax.ejb Cannot Be Resolve Eclipse
If you're having the above error, it means the javaee.jar is not included in your project. In my case I'm using a JBoss applicati...
https://www.czetsuyatech.com/2011/03/java-troubleshooting-java-ejb-cannot-be-resolve.html
If you're having the above error, it means the javaee.jar is not included in your project.
In my case I'm using a JBoss application server. To solve the issue simply add the jboss-javaee.jar in your project's build path. The javaee jar for jboss is commonly located on:
JBOSS_HOME/common/lib/jboss-javaee.jar
In my case I'm using a JBoss application server. To solve the issue simply add the jboss-javaee.jar in your project's build path. The javaee jar for jboss is commonly located on:
JBOSS_HOME/common/lib/jboss-javaee.jar
1 comment
Thank you!!!
Post a Comment