java – Spring Boot上的Jersey – ApplicationPath

有更多的编程方式,相当于以下配置:

@ApplicationPath("api")
public class MyResourceConfig extends ResourceConfig {

,为Jersey应用程序设置应用程序路径?我想让它可配置,也许可以使用类似的东西:

property("jersey.config.<application.path>", api);

与addtitinal:

@ConfigurationProperties(prefix = "jersey")
public class MyResourceConfig extends ResourceConfig {

@Setter @Getter protected String api;

解决方法:

您可以在application.properties中设置spring.jersey.application-path config.

上一篇:java – Jersey Client WebTarget线程安全吗?


下一篇:Spring Jersey:java.lang.NoSuchMethodError:org.glassfish.jersey.server.ServerProperties.getValue?