我正在使用TimerTask运行springboot应用程序,我的服务对象显示为空。
我尝试了各种方法,但无法摆脱Null指针异常。
主类。
@SpringBootApplication
@ComponentScan(basePackages = {"com.comments.demo"})
public class NotifyMain {
@Autowired
static
NotifyService notifyService;
public static void main(String[] args) {
Timer timer1 = new Timer();
timer1.schedule(notifyService, 10, 10);
SpringApplication.run(NotifyMain.class, args);
}
}
服务等级
package com.comments.demo;
@Service
@Configurable
public class NotifyService extends TimerTask{
@Autowired
ListNotification listElement;
@Override
public void run() {
Notification notification= new Notification();
listElement.add(notification);
}
ListNotification和Notification类工作正常。
控制台
Exception in thread "main" java.lang.NullPointerException
at java.util.Timer.sched(Timer.java:399)
at java.util.Timer.schedule(Timer.java:248)
at com.comments.demo.NotifyMain.main(NotifyMain.java:22)
这是ListNotification的代码
package com.comments.demo;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class ListNotification {
private List<Notification> notifications = new ArrayList<>();
@Autowired
private NotificationObserver notificationObserver;
public void setNotifications(List<Notification> notifications) {
this.notifications = notifications;
}
public void add(Notification notification) {
notifications.add(notification);
notifyListeners(notification);
}
private void notifyListeners(Notification newValue) {
notificationObserver.observation(newValue);
}
}
首先,我得到listElement对象为null。所以我得到了这一点,而不是在schedule方法的参数中使用新的NotifyService(),我应该使用注入的bean,但是我不知道该怎么做。
答案 0 :(得分:4)
run方法是应用程序的起点。我不认为在启动应用程序之前可以自动连接对象。尝试这样做
@SpringBootApplication
public class NotifyMain {
public static void main(String[] args) {
ConfigurableApplicationContext context = SpringApplication.run(NotifyMain.class, args);
NotifyService notifyService = (NotifyService) context.getBean(NotifyService.class);
context.getBean(Timer.class).schedule(notifyService, 10, 10);
}
}
答案 1 :(得分:3)
您不能在Spring中自动连线或手动连线静态字段。相反,请尝试使用setter注入:
private static NotifyService notifyService;
@Autowired
public void setNotifyService(NotifyService notifyService){
NotifyMain.notifyService= notifyService;
}
但是,仍然不能保证在使用NotifyService之前将其注入。您也可以尝试第二种方法:
private static NotifyService notifyService;
@Autowired
private NotifyService autowiredNotifyService; //same as above but non-static this time. And you autowire this one.
@PostConstruct
private void init() {
NotifyMain.notifyService = this.autowiredNotifyService;
}
第三种方法->使用构造函数注入:
private static NotifyService notifyService;
@Autowired
public NotifyMain(NotifyService notifyService){
NotifyMain.notifyService= notifyService;
}
知道自动布线到静电场是不可取的。一个人不应该这样做。
由于您的应用程序更像是基于控制台的应用程序,因此也可以采用这种方法:
@SpringBootApplication
public class NotifyMain implements CommandLineRunner {
@Autowired
private NotifyService notifyService;
public static void main(String[] args) {
SpringApplication.run(NotifyMain.class, args);
}
@Override
public void run(String... args) {
Timer timer1 = new Timer();
timer1.schedule(notifyService, 10, 10);
}