제외(exclude) dependency & 추가(add) dependency
<!-- exclusion : 기존 서블릿 컨테이너인 tomcat dependency 제외 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- add ex1. undertow -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
<!-- add ex2. jetty -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
// exclusion : 기존 서블릿 컨테이너인 tomcat dependency 제외
implementation ('org.springframework.boot:spring-boot-starter-web') {
exclude
group: 'org.springframework.boot',
module: 'spring-boot-starter-tomcat'
}
// add ex1. undertow
implementation 'org.springframework.boot:spring-boot-starter-undertow'
// add ex2. jetty
implementation 'org.springframework.boot:spring-boot-starter-jetty'
기본적으로 springboot는 아래와 같이 dependencies에 Web 관련 dependency가 포함되어
있으면 자동으로 Web Application으로 만들려고 시도를 한다.
하지만 JAVA Code 혹은 properties 설정을 통해서 해당 dependency가 있다고 하더라도
None-WebApplication으로 만들 수 있다.
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication application = new SpringApplication(Application.class);
application.setWebApplicationType(WebApplicationType.NONE); // 요 부분이 point
application.run(args);
}
}
spring.main.web-application-type=none
JAVA Code 혹은 application.properties로 서버 포트 관련 설정 및 활용이 가능하다.
server.port=원하는 포트 번호
server.port=0
ApplicationListener<WebServerInitializedEvent> 인터페이스를 상속하는 클래스를 만들고
해당 인터페이스가 가진, 매개변수로 WebServerInitializedEvent를 가지는 onApplicationEvent 함수 를 Override하여 webServerInitializedEvent.getApplicationContext() 에 대한 객체를 만들어서
서버 및 포트에 대한 정보를 얻어낼 수 있다.
당연한거지만 이러한 클래스를 최종적으로 만든 후 @Bean으로 등록해서 사용한다.
솔직히 글로 적어내기 어려우니 Code를 보자. . .
@Component
public class PortListener implements ApplicationListener<WebServerInitializedEvent> {
@Override
public void onApplicationEvent(WebServerInitializedEvent webServerInitializedEvent) {
WebServerApplicationContext applicationContext = webServerInitializedEvent.getApplicationContext();
System.out.println(applicationContext.getWebServer().getPort());
}
}