This question already has answers here:
Why is my Spring @Autowired field null?

(18个回答)


4年前关闭。




我对Spring和JMS非常陌生。香港专业教育学院一直试图提出一个涉及activemq和Spring的实现,如下所示。
spring-context.xml
<bean id="sampleApacheConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory" lazy-init="true">
    <property name="brokerURL" value="tcp://localhost:61616"/>
    <property name="userName" value=“kodeseeker"/>
    <property name="password" value=“mypassword"/>

</bean>

 <bean id="connectionFactory" class="org.springframework.jms.connection.CachingConnectionFactory">
        <constructor-arg ref="sampleApacheConnectionFactory" />
    </bean>

    <!--  Default Destination Queue Definition-->
    <bean id="defaultDestination" class="org.apache.activemq.command.ActiveMQQueue">
        <constructor-arg index="0" value="test.Foo"/>
    </bean>

    <!-- JmsTemplate Definition -->
    <bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
        <property name="connectionFactory" ref="connectionFactory" />
        <property name="defaultDestination" ref="defaultDestination" />
    </bean>

    <!-- Message Sender Definition -->
    <bean id="messageSender" class="com.mypackage.Publisher2">
    </bean>

<!-- Message Receiver Definition -->
    <bean id="messageReceiver" class="com.mypackage.Listener">

    </bean>
       <bean class="org.springframework.jms.listener.SimpleMessageListenerContainer">
        <property name="connectionFactory" ref="connectionFactory" />
        <property name="destinationName" value="test.Foo" />
        <property name="messageListener" ref="messageReceiver" />
    </bean>

</beans>

Publisher2.java
public class Publisher2 {

 @Autowired
 protected JmsTemplate jmsTemplate;
 .......
// function called to perform update.
  public void publishUpdate(final CustomMessage payload) throws JMSException {
      LOGGER.entry();
      try {
          JmsTemplate jmsTemp= this.jmsTemplate;
          if(jmsTemp ==null){
        //jmsTemplate is ALWAYS null.
           LOGGER.error("Jms Template is never initialized!!");
           return;
          }
          jmsTemp.send(new MessageCreator(){
         @Override
         public Message createMessage(Session session) throws JMSException {
             Message message = message(payload,session);   
             LOGGER.info("Sending message");
             return message;
        }
        });
      } catch (Exception jmsExcpetion) {
          LOGGER.error("Error placing message on Queue",jmsExcpetion);
     
      }
      LOGGER.exit();
  }
}

为了初始化jmsTemplate我有什么特别需要做的事情吗?如果有必要,我很乐意提供更多详细信息。

编辑1:
调用publishupdate的类
public class UpdateHandlerImpl implements UpdateHandler {
    private final Publisher2 publisher;
    ....
    public UpdateHandlerImpl() {
        this(new Publisher2());
    }
    public UpdateHandlerImpl(
            final Publisher2 publisher) {
           this. publisher = publisher;
    }
    ....
    @Override
    public void  handle(final CustomMessage entity) {
        try {
                     publisher. publishUpdate(entity);
        } catch (final JMSException e) {
            LOGGER.error("Error sending message", e);
        }

            }
   …..
    }

编辑3:
根据@keith的输入更新的UpdateHandlerImpl版本
public class UpdateHandlerImpl implements UpdateHandler {
    //Hoping spring wires this?
    Publisher2 publisher;
    @Override
    public void  handle(final CustomMessage entity) {
        try {
                     publisher. publishUpdate(entity);
        } catch (final JMSException e) {
            LOGGER.error("Error sending message", e);
        }

            }
   …..
    }

编辑2:
在启动时使用以下注释通过mule(这是一个mule应用程序)加载spring上下文。
<spring:beans>
        <spring:import resource="classpath:spring-context.xml" />
    </spring:beans>

最佳答案

如果使用Publisher2创建new,则不会在您创建的实例上关联依赖项。而是在上下文文件中将其定义为Spring bean,然后从那里获取它。

编辑

正如我所怀疑的那样,在您对问题的最新更新中,您确认您正在使用new创建Publisher2

public UpdateHandlerImpl() {
        this(new Publisher2());
    }

这不是Spring的工作方式。有关实例化bean的信息,请参见Spring Framework文档的Section 6.3.2。 (简而言之,使用上下文创建bean)

关于java - 为什么jmsTemplate总是为null?使用spring和Apache ActiveMQ ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33226948/

10-10 18:00