언더토우

Jmnote (토론 | 기여)님의 2023년 7월 19일 (수) 00:24 판 (Jmnote님이 언더토우 Undertow 문서를 언더토우 문서로 이동하면서 넘겨주기를 덮어썼습니다)

1 개요

Undertow
언더토우
  • 자바로 작성된 경량 웹서버
  • NIO 기반 블록킹/넌블록킹 API 제공
  • 웹소켓 지원
  • 서블릿 3.1 지원
public class HelloWorldServer {

    public static void main(final String[] args) {
        Undertow server = Undertow.builder()
                .addHttpListener(8080, "localhost")
                .setHandler(new HttpHandler() {
                    @Override
                    public void handleRequest(final HttpServerExchange exchange) throws Exception {
                        exchange.getResponseHeaders().put(Headers.CONTENT_TYPE, "text/plain");
                        exchange.getResponseSender().send("Hello World");
                    }
                }).build();
        server.start();
    }
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}