Reputation: 443
I want to use two external jars from EJB:
What should I do to achieve this? If I put this jars inside ear it doesn't work, and JBoss throws NoClassFoundException
Upvotes: 0
Views: 795
Reputation: 91931
you need to include them in a lib directory under the ear:
yourapp.ear
->lib
->jar1.jar
->jar2.jar
Upvotes: 3