私が問題を正しく理解している場合、問題が発生しています。DefaultDSデータ ソースが開始したことを報告しても、接続を取得していないため、接続が確立されていることを必ずしも認識していないためです。
残念ながら、事前入力オプションを有効にしても、データソース サービスは接続できなくても正常に開始されます。
最善の策は、開始を報告する前にデータソースからの実際の接続をチェックするServiceMBeanを実装することです。この例では、これをorg.bob.ConnCheckerと呼び、ObjectName org.bob:service=ConnCheckerを使用してデプロイします。
デプロイメント記述子は次のようになります。
<mbean code="org.bob.ConnChecker" name="jboss.mq:service=DestinationManager">
<depends optional-attribute-name="DataSource">jboss.jca:name=DefaultDS,service=ManagedConnectionPool</depends>
</mbean>
したがって、データ ソースが開始されるまで、サービスは開始されません。接続できない限り、サービスは開始されません。次に、DestinationManager の依存関係としてorg.bob:service=ConnCheckerを追加する必要があります。
jboss.mq:service=MessageCache jboss.mq:service=PersistenceManager jboss.mq:service=StateManager jboss.mq:service=ThreadPool jboss:service=ネーミング org.bob:service=ConnChecker
ConnCheckerのコードは次のようになります。
....
import org.jboss.system.ServiceMBeanSupport;
....
public class ConnChecker extends ServiceMBeanSupport implements ConnCheckerMBean {
/** The ObjectName of the data source */
protected ObjectName dataSourceObjectName = null;
/** The Datasource reference */
protected DataSource dataSource = null;
/**
* Called by JBoss when the dataSource has started
* @throws Exception This will happen if the dataSource cannot provide a connection
* @see org.jboss.system.ServiceMBeanSupport#startService()
*/
public void startService() throws Exception {
Connection conn = null;
try {
// Get the JNDI name from the DataSource Pool MBean
String jndiName = (String)server.getAttribute(dataSourceObjectName, "PoolJndiName");
// Get a ref to the DataSource from JNDI
lookupDataSource(jndiName);
// Try getting a connection
conn = dataSource.getConnection();
// If we get here, we successfully got a connection and this service will report being Started
} finally {
if(conn!=null) try { conn.close(); } catch (Exception e) {}
}
}
/**
* Configures the service's DataSource ObjectName
* @param dataSourceObjectName The ObjectName of the connection pool
*/
public void setDataSource(ObjectName dataSourceObjectName) {
this.dataSourceObjectName = dataSourceObjectName;
}
/**
* Acquires a reference to the data source from JNDI
* @param jndiName The JNDI binding name of the data source
* @throws NamingException
*/
protected void lookupDataSource(String jndiName) throws NamingException {
dataSource = (DataSource)new InitialContext().lookup(jndiName);
}
}
ConnCheckerMBeanのコードは次のようになります。
....
import org.jboss.system.ServiceMBeanSupport;
....
public interface ConnCheckerMBean extends ServiceMBean {
public void setDataSource(ObjectName dataSourceObjectName);
}
そのため、データベースに接続できない場合でもエラーが発生しますが、DestinationManager は起動しません。うまくいけば、現在の頭痛よりはましになるでしょう。