public class TcpServerHandler extends ChannelInboundHandlerAdapter {
@Autowired
private RabbitTemplate template;
在线程类里总是空的,非线程类正常,求指导
@Autowired
private RabbitTemplate template;
在线程类里总是空的,非线程类正常,求指导
解决方案
80
看看你的线程类在不在spring扫描路径下,不行就在spring配置文件中申明这个bean,手动进行注入配置
40
你的线程是不是本人new的?本人new的对象,没有接受Spring的管理,无法注入。