SpringApplication
- 스프링 어플리케이션을 간편하게 실행할 수 있도록 제공하는 클래스
- main()함수를 통해 실행되며, 기본 로그 수준은 info 이다.
- The following example shows potential logging settings in application.properties:
logging.level.root=WARN
logging.level.org.springframework.web=DEBUG
logging.level.org.hibernate=ERROR
FailureAnalyzers
- 스프링 실행시 오류가 발생하면 에러메세지와 해결 방법을 제시해준다.
\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
APPLICATION FAILED TO START
\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
Description:
Embedded servlet container failed to start. Port 8080 was already i
n use.
Action
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
customizing the Banner
- 스프링 실행시에 로딩되는 배너를 수정할 수 있다.
- classpath에 존재하는 banner.txt를 수정 (spring.banner.location)
- 텍스트 파일 대신에 이미지도 가능하다 (spring.banner.image.location)
- 스프링 부트 생성기 https://devops.datenkollektiv.de/banner.txt/index.html
- SpringApplication.setBanner(… ) 함수를 통해 배너를 커스터마이징 할 수 도 있다.
SpringApplication 수행순서
- ApplicationContext 인스턴스 생성
- CommandLinePropertySource를 spring properties에 등록
- Application context를 새로고침하고, 모든 싱글톤 bean을 로딩
- CommandLineRunner bean을 트리거
** 모든 bean은 ApplicationContext에서 관리
Application Events and Listeners
- 어떤 이벤트들은 ApplicationContext가 생성되기전에 trigger된다. 이런경우에 listner들은 @Bean으로 등록할 수가 없다. 그래서 SpringApplication.addListeners(… ), SpringApplicationBuilder.listeners(… ) 을 통해 등록이 가능하다.
- 만약 자동으로 하고 싶으면 META-INF/spring.factories 에 등록한다.
org.springframework.context.ApplicationListener=com.example.project.MyListener
이벤트- ApplicationStartingEvent : 리스너 등록 및 초기화, 모든 프로세스 시작 이전
- ApplicationEnvironmentPreparedEvent : Enviroment 객체가 context에 사용될때, context가 생성되기 이전
- ApplicationPreparedEvent : bean정의가 load되고 refresh 되기전
- ApplicationStartedEvent : context가 refresh되고, command-line runner가 호출되기전에
- ApplicationReadyEvent : command-line runner가 호출되고, service request를 요청받을 준비 알림
- ApplicationFailedEvent : exception이 발생했을때
Web Environment
- 스프링 mvc, 스프링 web flux일때 AnnotationConfigServletWebServerApplicationContext,
- 아닐때 AnnotationConfigApplicationContext
- 강제로 ApplicationContext를 지정할 수도 있다. (setApplicationContextClass(), setWebApplicationType() 함수 사용)
Accessing Application Arguments
SpringApplication.run(… ) 함수의 Arguments에 접근하고 싶다면 org.springframework.boot.ApplicationArguments bean을 주입받으면 된다.Using the ApplicationRunner or CommandLineRunner
springApplication실행할때 ApplicationRunner 또는 CommandLineRunner 인터페이스를 활용할 수 있다. 둘다 run()에 의해 실행된다.참고
댓글
댓글 쓰기