解决:A component required a bean of type ‘javax.jms.Queue‘ that could not be found.

前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到教程。

1. 情景描述:只是想简单写个 ActiveMQ 的小样,启动服务却报错:

Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2018-08-01 16:10:39.858 ERROR 4928 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

A component required a bean of type 'javax.jms.Queue' that could not be found.


Action:

Consider defining a bean of type 'javax.jms.Queue' in your configuration.

 

2. 原因和解决:

如提示信息中说的一样,Queue 类没有纳入spring 的管理。加上注解:  @Bean 就行了。

错误写法:

/**
 * @author silence
 * @date 2018/8/1 10:42
 */
@Component
public class MessageQueue{

    public Queue queue(){
        return new ActiveMQQueue("my-message");
    }

}

正确写法:

package gentle.activemq;

import org.apache.activemq.command.ActiveMQQueue;
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;
import javax.jms.Queue;

/**
 * @author silence
 * @date 2018/8/1 10:42
 */
@Component
public class MessageQueue{
    
    @Bean //返回一个名为 my-message 的队列,并且注册为 bean
    public Queue queue(){
        return new ActiveMQQueue("my-message");
    }

}

3. 成功启动服务:

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值