2016-07-07 1 views
0

私はJboss Fuse 6.1コンテナで動作するOSGIバンドルをビルドしています。プロジェクトにはblueprint.xmlが含まれています(src/main/resoureces/OSGI-INF/blueprintにあります)。コンテンツ:ラクダプロセッサーのオートワイヤリングスプリング

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" 
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
       xmlns:camel="http://camel.apache.org/schema/blueprint" 
       xmlns:camelcxf="http://camel.apache.org/schema/blueprint/cxf" 
       xmlns:cxf="http://cxf.apache.org/blueprint/core" 
       xmlns:jaxws="http://cxf.apache.org/blueprint/jaxws" 

       xsi:schemaLocation=" 
      http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd 
      http://camel.apache.org/schema/blueprint/cxf http://camel.apache.org/schema/blueprint/cxf/camel-cxf.xsd 
      http://camel.apache.org/schema/blueprint http://camel.apache.org/schema/blueprint/camel-blueprint.xsd 
      http://cxf.apache.org/blueprint/jaxws http://cxf.apache.org/schemas/blueprint/jaxws.xsd 
    http://cxf.apache.org/blueprint/core http://cxf.apache.org/schemas/blueprint/core.xsd" 
    > 
<bean id="MyProcessor" class="com.test.MyProcessor" /> 
      <camelContext trace="false" id="blueprintContext" xmlns="http://camel.apache.org/schema/blueprint"> 
      <route> 
       <from uri="activemq:queue:paymentsqueue?username=admin&amp;password=admin" id="NotificationRoute"> 
        <description/> 
       </from> 
       <log message="The message contains ${body}"/> 
       <process ref="MyProcessor"/> 
      </route> 
     </camelContext> 
    </blueprint> 

私の目標は、MyProcessorで春の豆を使用していることです。これはMyProcessorのコードです:

public class MyProcessor implements Processor { 

@Aurowired 
private Sender sender; 

@Override 
public void process(Exchange x) throws Exception { 
    log.info("test: " +sender.getSenderId()); 
} 

}

しかし、それは私にNullPointerExceptionができます。私が間違っていることは何ですか?

これは私の春のコンフィギュレーション・ファイルの内容である

<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:p="http://www.springframework.org/schema/p" 
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:tx="http://www.springframework.org/schema/tx" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd 
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd 
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"> 
    <context:annotation-config/> 
    <context:component-scan base-package="com.username"/> 
<bean id="sender" class="com.username.Sender" scope="prototype"> 
    <property name="senderId" value="sendername" /> 
    <property name="password" value="senderpassword" /> 
</bean> 

+0

一般的には、青写真豆同時に\t に春の豆を使用することは可能でしょうか?私の例のように、ラクダルートとプロセッサは青写真によって作成されていますが、春で作成された豆をautowiringします。 – Maciavelli

答えて

0

私はあなたがプロセッサMyProcessorなどを宣言していないと思います(私は/メイン/ resoureces/META-INF /春SRCでそれを置きます)

<bean id="myProcessor" 
     class="com.test.MyProcessor" /> 

のような春のBeanは、あなたは

<process ref="myProcessor"/> 
として使用することができますまた

@Aurowired 
private Sender sender; 

が@Autowiredれるべき

(これはタイプミスであってもよいが、それを指摘しなければならない。)

+0

ええ、上のコードをコピーしたときに間違いました。この豆は青写真で宣言されています。私は編集しました。 – Maciavelli

関連する問題