我想要支持以下URI:
chmod u+x setenv.sh
我不想要:
/api/ice-cream-service/sizes
/api/ice-cream-service/flavors
我确实想要:
@Path("/api/ice-cream-service/sizes")
@Path("/api/ice-cream-service/flavors")
如何为Dropwizard应用程序定义应用程序级别,默认基本URL?
答案 0 :(得分:0)
Dropwizard目前支持可在应用程序YAML中定义的@Path("/sizes")
@Path("/flavors")
配置点。
此帖时的文档:1.3.0 Configuration Reference
示例应用程序配置可能如下所示:
appRoot