在普通类里或工具类里注入service或mapper,那么我们直接使用@Autowired注入,注入的service或mapper在方法里是不能直接使用,会报null。
如果是工具类,工具类里一般都是静态方法,更是无法使用。
解决方法
方法一:构造器传参
如果该工具类或普通类是被其他Controller/Service层调用的
- 可以在Controller/Service层@Autowired注入类
- 并创造被调用类的构造器
- 将对象传到被调用的类
调用的类
@Autowired
protected ReceiveAlarmMapping receiveAlarmMapping;
Socket socket = null;
socket = serverSocket.accept();
public void receiveAlarm() {
Thread serverHandleThread = new Thread(new ServerHandleThread(socket, receiveAlarmMapping));
serverHandleThread.setPriority(4);
serverHandleThread.start();
}
被调用的类
Socket socket = null;
ReceiveAlarmMapping receiveAlarmMapping = null;
public ServerHandleThread(Socket socket, ReceiveAlarmMapping receiveAlarmMapping) {
super();
this.socket = socket;
this.receiveAlarmMapping = receiveAlarmMapping;
}
方法二:@PostConstruct
第一步:在java类上添加@Component注解,将java类实例到spring容器中。
import org.springframework.stereotype.Component;
@Component
public class HJ212ServerHandler {
}
第二步:使用@Autowired注入service或mapper。
import org.springframework.stereotype.Component;
import org.springframework.beans.factory.annotation.Autowired;
@Component
public class HJ212ServerHandler {
// 需要注入的 service
@Autowired
protected ConditionService conditionService;
}
第三步:使用@PostConstruct注解初始化java类和service或mapper。
import javax.annotation.PostConstruct;
import org.springframework.stereotype.Component;
import org.springframework.beans.factory.annotation.Autowired;
@Component
public class HJ212ServerHandler {
// 需要注入的 service
@Autowired
protected ConditionService conditionService;
// 当前类
private static HJ212ServerHandler hJ212ServerHandler;
/**
* 初始化
*/
@PostConstruct
public void init(){
hJ212ServerHandler = this;
hJ212ServerHandler.conditionService = this.conditionService;
}
}
第四步:以上三步完成后,在方法里就可以使用注入的service或mapper了。
import javax.annotation.PostConstruct;
import org.springframework.stereotype.Component;
import org.springframework.beans.factory.annotation.Autowired;
@Component
public class HJ212ServerHandler {
// 需要注入的 service
@Autowired
protected ConditionService conditionService;
// 当前类
private static HJ212ServerHandler hJ212ServerHandler;
/**
* 初始化
*/
@PostConstruct
public void init(){
hJ212ServerHandler = this;
hJ212ServerHandler.conditionService = this.conditionService;
}
/**
* 需要使用 serive 的方法
*/
public static void test(){
// 调用查询方法
String monitorName = hJ212ServerHandler.conditionService.getMonitorName(mn);
}
}