Python 官方文档:入门教程 => 点击学习
目录spring注解为bean指定InitMethod和DestroyMethod下面是具体代码注意@Bean中的initMethod和destroyMethodspring注解为b
需要注意的是:
初始化:
销毁:
Car.java
public class Car {
public Car() {
System.out.println("Car's Constructor..");
}
public void init(){
System.out.println("Car's Init...");
}
public void destory(){
System.out.println("Car's Destroy...");
}
}
配置类
@Bean(initMethod = "init",destroyMethod = "destory")
public Car car(){
return new Car();
}
@Configuration
public class AppConfig {
@Bean(initMethod = "init")
public Foo foo() {
return new Foo();
}
@Bean(destroyMethod = "cleanup")
public Bar bar() {
return new Bar();
}
}
上述代码中initMethod和destroyMethod后面没有括号。
记住千万不要带括号。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: spring注解如何为bean指定InitMethod和DestroyMethod
本文链接: https://lsjlt.com/news/157734.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0