Python 官方文档:入门教程 => 点击学习
SpringBoot static调用service为null @PostConstruct注解好多人以为是spring提供的。其实是Java自己的注解。 Java中该注解的说明:
@PostConstruct注解好多人以为是spring提供的。其实是Java自己的注解。
@PostConstruct该注解被用来修饰一个非静态的void()方法。被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器执行一次。PostConstruct在构造函数之后执行,init()方法之前执行。
通常我们会是在Spring框架中使用到@PostConstruct注解 该注解的方法在整个Bean初始化中的执行顺序:
Constructor(构造方法) -> @Autowired(依赖注入) -> @PostConstruct(注释的方法)
实战:
在静态方法中调用依赖注入的Bean中的方法。
@Component
public class LeaveCode {
@Autowired
private IPlaLeaveApplyService plaLeaveApplyService;
public static LeaveCode leaveCode;
@PostConstruct
public void init(){
leaveCode = this;
leaveCode.plaLeaveApplyService = this.plaLeaveApplyService;
}
}
Spring注入service后,正常情况下非静态方法是可以正常使用注册的service的,当时用静态类引用的时候,静态类static方法会将spring注入的service清空。
@Component
public class UserUtils {
@Autowired
private UserService userService;
private static UserUtils userUtils;
@PostConstruct
public void init() {
userUtils = this;
userUtils.userService = this.userService;
}
}
使用:
User user = userUtils.userService.getUser(loginCode);
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: springboot 如何解决static调用service为null
本文链接: https://lsjlt.com/news/127889.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0