HTTP/2 적용을 위해서는 기본적으로 SSL이 적용되어 있어야 한다. 먼저 application.properties에 아래와 같이 적용한다. server.ssl.key-store=keystore.p12 server.ssl.key-store-type=PKCS12 server.ssl.key-store-password=kyhslam server.ssl.key-alias=spring server.port=8443 server.http2.enabled=true // http2 적용그리고 pom.xml에서 tomcat을 제외하고 undertow를 추가한다. 마지막으로 애플리케이션을 실행해서 아래와 같이 뜨면 성공! 자세히보면 Undertow started on port(s) 8443 (https) with con..