在 Timer class 对象中使用 Main 方法中的 NULL Autowired 对象

NULL Autowired object in Main method while using it in Timer class object

我是 运行 带有 TimerTask 的 springboot 应用程序,我的服务对象显示为空。

尝试了各种方法都无法解决空指针异常

主要class。

@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);

    }
}

服务class

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 class 工作正常。

控制台

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 但我不知道该怎么做。

您不能在 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);
}
main class 中的

运行 方法是应用程序的起点。我不认为在启动应用程序之前你可以自动装配对象。尝试这样做

    @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);
    }
}