3

xBeanで解析された外部XMLファイルを介してActiveMQブローカーを構成する際に問題が発生しました。この時点で、ヘルプ、ヒント、ポインタ、ヒント、さらには応援を歓迎します。これが私の問題です:

外部の.xmlファイルを使用してブローカーを構成しようとしています。Springバンドルのコンテキストに次のコードがあります。

<bean id="brokerFactory" class="org.apache.activemq.xbean.BrokerFactoryBean">  
 <property name="config" value="file:c:/activemq.xml" />  
 <property name="start" value="false" />  
</bean>

これは、それ以上の問題なしに構成ファイルとリンクするはずです。activemq.xmlファイルは次のようになります。

<beans 
xmlns="http://www.springframework.org/schema/beans" 
xmlns:amq="http://activemq.apache.org/schema/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans     http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
  http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>

 <amq:broker useJmx="true" xmlns="http://activemq.apache.org/schema/core">

    <networkConnectors>
      <!-- 
      <networkConnector uri="multicast://default?initialReconnectDelay=100" />
      <networkConnector uri="static://(tcp://localhost:61616)" />
       -->
    </networkConnectors>

    <persistenceFactory>
      <journalPersistenceAdapterFactory journalLogFiles="5" dataDirectory="${basedir}/target/foo" />

    </persistenceFactory>

    <transportConnectors>
      <transportConnector uri="tcp://localhost:61636" />
    </transportConnectors>
  </amq:broker>
</beans>

ご覧のとおり、これはかなり標準的なものです。バンドルを開始すると、次の例外が発生します。

org.springframework.beans.factory.BeanCreationException: Error creating bean with name     'brokerManager' defined in URL [bundle://7.0:0/META-INF/spring/bundle-context.xml]: Cannot resolve reference to bean 'brokerFactory' while setting  bean property 'brokerFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'brokerFactory' defined in URL [bundle://7.0:0/META-INF/spring/bundle-context.xml]: Invocation of init method failed; nested exception is org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 10 in XML document from OSGi resource[file:c:/activemq.xml|bnd.id=7|bnd.sym=genericenqueuer-engine] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be  found for element 'amq:broker'.

関係するnamaspacesのいくつかの構成を試しました。"amq:"宣言(<broker>および)の有無にかかわらずブローカータグを使用し<amq:broker>、activemq.xsd宣言の特定のバージョン番号を指定します。それでも、.xsdファイルが見つからないようです。activemq .xsdファイルのバージョン番号を指定すると、代わりに次のようになります。

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'brokerFactory' defined in URL [bundle://7.0:0/META-INF/spring/bundle-context.xml]: Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanDefinitionStoreException: Unrecognized xbean namespace mapping: http://activemq.apache.org/schema/core

ここにあるxbean-springバージョン3.7を使用しています。バンドルファイルから.xsdファイルを抽出し、com.springsource.org.apache.activemq-5.3.0.jarバンドルの1つにあるパッケージにエクスポートしようとしましたが、パーサーがそれを見つけられないようです。この問題について、GeronimoJiraにもバグを投稿しまし

誰かがこの問題に光を当てることができますか?

よろしくお願いします、
エドゥアルド。

4

1 に答える 1

1

2つのオプションがあります。brokerFactory1つ目は、タグを使用してosgiサービスとして公開<osgi:service ...>し、Beanを参照する2番目のバンドルにインポートすることです。もう1つのオプションはbrokerFactory、同じバンドルでを使用することです。それが役に立てば幸い...

于 2011-07-07T09:43:06.747 に答える