I have JBoss AS 6 running.
I have deployed multiple War applications. All those apps access the DB through hibernate configuration.
I have configured Datasources in JBoss, one DS for each War application, because they use different DB user accounts. Then in each app, I configure the
hibernate.cfg.xmland state the corresponding DS to be used. Each war has its ownhibernate.cfg.xml.When isolated, each app works perfectly. I start the server, test the app, shutdown the server. All is ok.
The problems arose when I started the server and started using all the apps. The first app to make a connection to the DB seems to work fine, but the following might show some problems related to:
- Non-existing hibernate entity mappings.
- Non-existing DB tables.
My theories:
The corresponding
hibernate.cfg.xmlwasn't loaded and the mappings' locations weren't loaded. When a query is performed, hibernate has no knowledge of such entity.The corresponding
hibernate.cfg.xmlwasn't loaded and a different user account is being used to connect to DB. Some tables are only visible to some users.
My question is:
Why aren't the applications loading correctly the corresponding hibernate.cfg.xml?