Armeria

Armeria: 어디서나 잘 어울리는 마이크로서비스 프레임워크

Java와 Armeria로 기본적인 웹 서버 만들기

 

Dependency 추가 
<Group Name>:<Artifact Id>:<Version>
compile "com.linecorp.armeria:armeria:0.68.2"

 

public class ArmeriaServer {

	public static void main(String[] args) {
		
		new ServerBuilder()
			.http(7000)
			.service("/hello", (ctx, res) -> HttpResponse.of(
				HttpStatus.OK, MediaType.HTML_UTF_8
				, "<h1>Hello</h1>"
			)).build().start();
	}
}

 

18:21:32.686 [main] DEBUG io.netty.channel.DefaultChannelId - -Dio.netty.machineId: a4:34:d9:ff:fe:ca:a7:dd (auto-detected)
18:21:32.742 [armeria-boss-http-*:7000] INFO com.linecorp.armeria.server.Server - Serving HTTP at /[0:0:0:0:0:0:0:0]:7000 - http://127.0.0.1:7000/