我想从我的 Helidon MP 服务器提供静态内容。但我只得到No handler found for path: /static/index.html
.
我已经在以下位置配置了静态资源src/main/resources/META-INF/microprofile-config.properties
:
server.static.classpath.location=/static
我开始我的服务器:
Server.builder().config(Config.create()).build().start();
我想我必须添加一个 JaxRsApplication?但是我该怎么做呢?
我发现它在我使用时确实有效,io.helidon.microprofile.cdi.Main
但我想手动创建服务器。