AngtJS 응용 프로그램을 제공하기위한 간단한 웹 서버로 Undertow를 사용하고 싶습니다. AngularJS 응용 프로그램에 필요한 나머지 서비스는 Apache Camel에서 제공하므로 Undertow를 사용하여 각도 응용 프로그램 만 제공하면됩니다.AngtJS를 제공하기 위해 Undertow를 사용하십시오.
설명서를 읽었지만 올바르게 작동하지 않을 수 있습니다. 내가 잘못하고있는 것에 대한 아이디어가 있습니까? 여기
내가Undertow server = Undertow.builder()
.addHttpListener(8080, "localhost")
.setHandler(resource(new FileResourceManager(new File("../dist"),10))
.addWelcomeFiles("../dist/index.html")
.setDirectoryListingEnabled(true))
.build();
server.start();
아마도 디렉토리 목록을 비활성화해야합니다. – aramaki