静态工具类中使用注解注入service(静态方法调用有注解的非静态方法)
Posted 小海追梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了静态工具类中使用注解注入service(静态方法调用有注解的非静态方法)相关的知识,希望对你有一定的参考价值。
原文转载:http://blog.csdn.net/p793049488/article/details/37819121
解决方案如下:
/**
*
*/
package cn.common.util;
import javax.annotation.PostConstruct;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class Utils {
@Autowired
private Service service;
private static Utils utils;
public void setUserInfo(Service service) {
this.service = service;
}
@PostConstruct
public void init() {
utils = this;
utils.service = this.service;
}
public static void insertOpeLog(HttpServletRequest req, String str) {
ServiceBean bean =new ServiceBean();
utils.service.save(bean); //调用方法
}
}
以上是关于静态工具类中使用注解注入service(静态方法调用有注解的非静态方法)的主要内容,如果未能解决你的问题,请参考以下文章