using registerShutdownHook() in the Spring Framework

后端 未结 6 2371
深忆病人
深忆病人 2021-02-08 22:14

I am following this tutorial online to the letter. http://www.tutorialspoint.com/spring/spring_bean_life_cycle.htm

But I get the errors when using Eclipse when I get to

6条回答
  •  一个人的身影
    2021-02-08 22:39

    I also got the same issue. I solved it using this way.

    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("Bean.xml");
        HelloWorld obj =(HelloWorld)context.getBean("helloWorld");
        obj.getMessage();
        ((AbstractApplicationContext) context).registerShutdownHook();
    }
    

提交回复
热议问题