在 Helidon MP 中配置 Jersey
Configure Jersey in Helidon MP
我想将 Jersey 的配置 属性 org.glassfish.jersey.server.ServerProperties.UNWRAP_COMPLETION_STAGE_IN_WRITER_ENABLE
设置为 true
。
我已阅读 Helidon documentation about configuring the server 并尝试将以下内容添加到我的 microprofile-config.properties
:
jersey.config.server.unwrap.completion.stage.writer.enable=true
不过貌似没有接受。如何在 Helidon MP 中正确设置 Jersey 的配置 属性?
在 Helidon MP 版本 2.4.0 中,您需要 follow Jersey's instructions for integrating with MicroProfile Config,请记住 Helidon 的 MicroProfile Config 实现已经得到处理,因此无需复制该依赖项。
在我看来,Helidon 应该会为您解决这个问题,但至少在 2.4.0 版本中不会。
我想将 Jersey 的配置 属性 org.glassfish.jersey.server.ServerProperties.UNWRAP_COMPLETION_STAGE_IN_WRITER_ENABLE
设置为 true
。
我已阅读 Helidon documentation about configuring the server 并尝试将以下内容添加到我的 microprofile-config.properties
:
jersey.config.server.unwrap.completion.stage.writer.enable=true
不过貌似没有接受。如何在 Helidon MP 中正确设置 Jersey 的配置 属性?
在 Helidon MP 版本 2.4.0 中,您需要 follow Jersey's instructions for integrating with MicroProfile Config,请记住 Helidon 的 MicroProfile Config 实现已经得到处理,因此无需复制该依赖项。
在我看来,Helidon 应该会为您解决这个问题,但至少在 2.4.0 版本中不会。