내장 웹 서버 응용 - 서블릿 컨테이너와 포트

Crow·2021년 8월 4일
0
post-thumbnail

학습목표

  • springboot 기존 서블릿 컨테이인 톰캣을 제외시키고 다른 서블릿 컨테이너로
    변경할 수 있다.
  • 웹 서버 없이 Application을 실행할 수 있다.
  • 서버 포트 설정 및 서버 포트 info를 Application 상에서 활용할 수 있다.

다른 서블릿 컨테이너로 변경하기

제외(exclude) dependency & 추가(add) dependency

  • maven
  • gradle

Ex. Maven (pom.xml)

	<!-- 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>

Ex. Gradle (build.gradle)

// 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'

None-Web Application

기본적으로 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>
  • Code
  • application.properties

ex1. Code (실행부, Application.java)

@SpringBootApplication
public class Application {
	public static void main(String[] args) {
		SpringApplication application = new SpringApplication(Application.class);
		application.setWebApplicationType(WebApplicationType.NONE); // 요 부분이 point
		application.run(args);
	}
}

ex2. application.properties

spring.main.web-application-type=none

서버 포트

JAVA Code 혹은 application.properties로 서버 포트 관련 설정 및 활용이 가능하다.

  • 포트 번호 지정
  • 랜덤 포트 지정
  • ApplicationListener<WebServerInitializedEvent>

포트 번호 지정

Ex. application.properties

server.port=원하는 포트 번호

랜덤 포트 지정

Ex. application.properties

server.port=0

ApplicationListener<WebServerInitializedEvent>

ApplicationListener<WebServerInitializedEvent> 인터페이스를 상속하는 클래스를 만들고
해당 인터페이스가 가진, 매개변수로 WebServerInitializedEvent를 가지는 onApplicationEvent 함수 를 Override하여 webServerInitializedEvent.getApplicationContext() 에 대한 객체를 만들어서
서버 및 포트에 대한 정보를 얻어낼 수 있다.
당연한거지만 이러한 클래스를 최종적으로 만든 후 @Bean으로 등록해서 사용한다.

솔직히 글로 적어내기 어려우니 Code를 보자. . .

Ex. PortListener.java

@Component
public class PortListener implements ApplicationListener<WebServerInitializedEvent> {
    @Override
    public void onApplicationEvent(WebServerInitializedEvent webServerInitializedEvent) {
        WebServerApplicationContext applicationContext = webServerInitializedEvent.getApplicationContext();
        System.out.println(applicationContext.getWebServer().getPort());
    }
}
profile
올빼미를 사냥한 까마귀에서 진화한 독수리

0개의 댓글

관련 채용 정보