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...

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