线程类无法注入Redis或接口?如何使用构造注入解决?

ID:16711 / 打印

线程类无法注入redis或接口?如何使用构造注入解决?

线程类注入问题:无@autowired注入方法

你在编写线程类时遇到无法注入 redis 或接口的问题。这是因为线程无法使用@autowired进行注入。以下是如何使用构造注入方法解决此问题:

线程类:

@component public class mythread extends thread {      private redistemplate<string, string> redistemplate;     private myinterface myinterface;      public mythread(redistemplate<string, string> redistemplate, myinterface myinterface) {         this.redistemplate = redistemplate;         this.myinterface = myinterface;     }     ... }

调用:

// 注入线程类 @autowired private mythread mythread;  // 启动线程 mythread.start();

注入:

使用以下配置在主应用程序上下文中配置这三个 bean:

<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate" /> <bean id="myInterface" class="com.example.MyInterfaceImpl" /> <bean id="myThread" class="com.example.MyThread" />

这样,redistemplate 和 myinterface 将通过构造函数注入 mythread 类,解决注入问题。

上一篇: Java 线程类注入难题:如何解决 @Autowired 失效问题?
下一篇: 学习JAVA从入门到上岗要多久?

作者:admin @ 24资源网   2024-11-27

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。