0
私は、異なるクライアント(TestA、TestBなど)で同じ戦争を展開する必要があるシナリオを持っています。各warファイルは異なるデータベースに接続します。だから私はそれぞれのデータベース接続プロパティで、同じ名前の戦争をコピーしています。jbossに同じ名前の別の戦争を展開する5
種皮
ため 接続のプロパティhibernate.connection.driver_class = com.mysql.jdbc.Driver
hibernate.connection.url = jdbc:mysql://localhost:3306/TESTADB
hibernate.connection.username = testa
hibernate.connection.password = testa
hibernate.dialect = org.hibernate.dialect.MySQLDialect
TESTBのための接続のプロパティ
hibernate.connection.driver_class = com.mysql.jdbc.Driver
hibernate.connection.url = jdbc:mysql://localhost:3306/TESTBDB
hibernate.connection.username = testb
hibernate.connection.password = testb
hibernate.dialect = org.hibernate.dialect.MySQLDialect
しかし、唯一の種皮が実行されている、他の戦争が実行されていません。
私はすべての戦争をJBOSSのF:/jboss-5.0.0./server/default
フォルダに展開しました。
私はこれは動作するはずのjboss-web.xmlのに
<jboss-web>
<context-root>/TestA</context-root>
</jboss-web>
と
<jboss-web>
<context-root>/TestB</context-root>
</jboss-web>
を設定しようとすると、それぞれの戦争で
http://localhost:8080/TestA
http://localhost:8080/TestB
例外はありますか? –