Reputation: 5851
We are trying to migrate from GlassFish to TomEE however we are experiencing troubles deploying our custom resource adapters on TomEE. On GlassFish it is just a matter of deploying RAR file, configuring resource adapter config and that is all. How can we do the same on TomEE with minimal changes to our code?
Upvotes: 2
Views: 1241
Reputation: 3422
basically go to tomee.xml, ensure this line is not commented:
<Deployments dir="apps" />
If apps folder doesn't exist create it (same level as webapps) and put the rar inside
Upvotes: 1