赞
踩
更多更新信息请关注“技术客格”
场景一:静态方法或工具类中注入Bean
示例:
- /**
- * @author Hoking
- * @version 1.0
- * @description: 通用工具类型
- * @date 2022/5/22 19:36
- */
- public class CommonUtil {
- @Autowired
- private static MongoTemplate mongoTemplate;
- /**
- * 处理mongo数据
- */
- public static void handleMongoData(){
- Object obj = new Object();
- mongoTemplate.insert(obj);
- }
- }
使用此方式静态对象注入不成功,mongoTemplate 为 null。
解决方式:
1、工具类增加@Component注解;
2、声明工具类的静态对象,即CommonUtil;
3、使用@PostConstruct注解;
PostConstruct 注释用于在依赖关系注入完成之后需要执行的方法上,以执行任何初始化。此方法必须在将类放入服务之前调用。支持依赖关系注入的所有类都必须支持此注释。即使类没有请求注入任何资源,用 PostConstruct 注释的方法也必须被调用。只有一个方法可以用此注释进行注释。
使用要求:
1、只有一个非静态方法能使用此注解;
2、被注解的方法不得有任何参数;
3、被注解的方法返回值必须为void;
4、被注解方法不得抛出已检查异常;
5、此方法只会被执行一次;
调整后示例:
- /**
- * @author Hoking
- * @version 1.0
- * @description: 通用工具类型
- * @date 2022/5/22 19:36
- */
- @Component
- public class CommonUtil {
- @Autowired
- private MongoTemplate mongoTemplate;
- private static CommonUtil commonUtil;
- @PostConstruct
- public void init(){
- commonUtil = this;
- commonUtil.mongoTemplate = this.mongoTemplate;
- }
- /**
- * 处理mongo数据
- */
- public static void handleMongoData(){
- Object obj = new Object();
- commonUtil.mongoTemplate.insert(obj);
- }
- }
场景二:静态方法或工具类中注入配置参数
前置:
1、配置文件yaml配置如下:
server:
netty-port: 88480000
2、工具类中获取server.netty-port数据值;
示例:
- /**
- * @author Hoking
- * @version 1.0
- * @description: 通用工具类型
- * @date 2022/5/22 19:36
- */
- @Slf4j
- @Component
- public class CommonUtil {
- @Value("${server.netty-port}")
- public static Integer nettyPort;
- @Autowired
- private MongoTemplate mongoTemplate;
- private static CommonUtil commonUtil;
- @PostConstruct
- public void init(){
- commonUtil = this;
- commonUtil.mongoTemplate = this.mongoTemplate;
- }
- /**
- * 处理mongo数据
- */
- public static void handleMongoData(){
- Object obj = new Object();
- commonUtil.mongoTemplate.insert(obj);
- log.info("Netty-Port: {} 。", nettyPort);
- }
- }
示例代码获取不到nettyPort。
解决方式:
1、使用场景一中的构造器注入;
2、使用Setter方法注入;
调整后示例:
- /**
- * @author Hoking
- * @version 1.0
- * @description: 通用工具类型
- * @date 2022/5/22 19:36
- */
- @Slf4j
- @Component
- public class CommonUtil {
- public static Integer nettyPort;
- @Autowired
- private MongoTemplate mongoTemplate;
- private static CommonUtil commonUtil;
- @PostConstruct
- public void init(){
- commonUtil = this;
- commonUtil.mongoTemplate = this.mongoTemplate;
- }
- /**
- * 处理mongo数据
- */
- public static void handleMongoData(){
- Object obj = new Object();
- commonUtil.mongoTemplate.insert(obj);
- log.info("Netty-Port: {} 。", nettyPort);
- }
- @Value("${server.netty-port}")
- public void setNettyPort(Integer nettyPort){
- CommonUtil.nettyPort = nettyPort;
- }
- }
测试工具类:
- /**
- * @author Hoking
- * @version 1.0
- * @description: 测试工具类
- * @date 2022/5/22 19:03
- */
- @RunWith(SpringRunner.class)
- @SpringBootTest(classes = AdminApplication.class)
- public class StaticBeanAutowiredTest {
- @Test
- public void test(){
- CommonUtil.handleMongoData();
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。