如何将静态 html 资源添加到 Grizzly 2.2 服务器?我试过
val server = GrizzlyHttpServerFactory.createHttpServer(uri, new ResourceConfig())
val statichandler = new StaticHttpHandler()
statichandler.addDocRoot("/webapp")
statichandler.start
server.getServerConfiguration.addHttpHandler(statichandler)
server.start
webapp 文件夹位于 maven 项目的 src/main/resource 中。