如何使用Dropwizard定义Jersey上下文根?

时间:2018-03-28 19:49:51

标签: jersey dropwizard

我想要支持以下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?

1 个答案:

答案 0 :(得分:0)

Dropwizard目前支持可在应用程序YAML中定义的@Path("/sizes") @Path("/flavors") 配置点。

此帖时的文档:1.3.0 Configuration Reference

示例应用程序配置可能如下所示:

appRoot