Springboot가 자동으로 클래스를 인스턴스화하기 전에 유형이 인스턴스화될 때 사용할 일부 데이터를 준비해야 합니다. 테스트 후 시작 클래스에 @PostConstruct
주석을 추가하는 것이 효과적입니다. @PostConstruct
有效。
@SpringBootApplication public class MyApplication { public static void main(String[] args) { SpringApplication.run(MyApplication.class, args); } // springboot正式启动前 @PostConstruct public void postConstruct(){ System.out.println("执行Springboot正式启动前的代码") } }
实现Spring的ApplicationRunner
与CommandLineRunner
rrreee
ApplicationRunner
및 CommandLineRunner
인터페이스를 구현하는 메서드는 Springboot가 시작된 후에만 실행됩니다. 🎜위 내용은 Springboot는 시작 전에 코드를 어떻게 실행합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!