spring boot在关闭程序得时候释放资源
2019-07-17 本文已影响0人
刘书生
使用注解@Prepestroy
示例:
@Component
public class ExitCodeApplication {
@PreDestroy
public void destory(){
System.out.println("我被销毁、、、、");
}
}
运行结果图:

使用注解@Prepestroy
示例:
@Component
public class ExitCodeApplication {
@PreDestroy
public void destory(){
System.out.println("我被销毁、、、、");
}
}
运行结果图: