I have an application running in Jboss-5.1 , here i have different xml files to configure my server, mysql datasource , log4j , jms queue etc . But in case of Jboss as 7.1 i have to put all my configuration in only a single file standalone.xml . How can I avoid using standalone.xml file as less as possible ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
if you going to use persistence, in your project put a persistence.xml file:
and orm.xml:
in jboss-home/modules add eclipselink module (org.eclipse.persistence) add a postgresql module, and you have to add java:jboss/datasources/PostgreSQLDS datasource and postgresql driver on standalone.xml, I know no other way to avoid it, maybe start multiple Jboss instance or clusters: http://middlewaremagic.com/jboss/?p=1952 |
|||||||||||
|