springboot使用哪个注解让程序启动就执行方法
时间: 2024-02-27 11:59:04 浏览: 57
springboot启动时执行任务的设置.docx
可以使用`@PostConstruct`注解来实现在Spring Boot应用程序启动时就执行某个方法。在具体实现时,只需在需要执行的方法上添加`@PostConstruct`注解即可。例如:
```java
@Component
public class MyComponent {
@PostConstruct
public void init() {
// 在应用程序启动时执行的方法逻辑
}
}
```
这样,当应用程序启动时,Spring Boot会自动扫描`@Component`注解的类,并执行其中所有使用`@PostConstruct`注解的方法。
阅读全文