springboot 启动时执行某个方法 文心快码BaiduComate 在Spring Boot应用中,如果你想在启动时执行某个方法,可以按照以下步骤进行操作: 创建一个组件: 首先,你需要在Spring Boot应用中创建一个组件。这通常是通过在类上使用@Component注解来实现的。Spring Boot会在启动时扫描并注册这些组件。 java import org.spring...
这里要注意:ProvinceCityDistrictLocalCacheJob 类必须要交给spring管理,这样才能在项目启动的时候加载bean,所以要加上@Component注解。 3、用spring时,在某个Class被初始化之后再执行一些代码,可以用@PostConstruct注解方法,如: package org.dhframework; import org.springframework.beans.factory.annotation.Autowired; impo...