gpt4 book ai didi

jersey-2.0 - Dropwizard 0.8.0 WADL 支持

转载 作者:行者123 更新时间:2023-12-01 00:01:24 26 4
gpt4 key购买 nike

Wadl 可以像这样在 Dropwizard 0.7.1 中配置:

environment
.jersey()
.getResourceConfig()
.getProperties()
.put(ResourceConfig.FEATURE_DISABLE_WADL, Boolean.FALSE);//Create WADL

如何在 Dropwizard 0.8.0 中进行设置

最佳答案

属性键的位置已更改, map 不可修改 - 因此您需要改用 addProperties 方法:

import org.glassfish.jersey.server.ServerProperties;
...
Map<String, Object> properties = new HashMap<>();
properties.put(ServerProperties.WADL_FEATURE_DISABLE, false);
environment.jersey().getResourceConfig().addProperties(properties);

从 0.8.0 开始 Dropwizard is disabling WADL generation所以你需要明确地打开它。

关于jersey-2.0 - Dropwizard 0.8.0 WADL 支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28938323/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com