Payara Micro ConfigProperty“payara.instance.https.port”无法正常工作

时间:2018-03-11 10:59:08

标签: payara payara-micro

目前我使用payara-micro-4.1.2.174microprofile-config-api.version 1.2.1并注入以下内容:

但始终获取http端口,而不是https端口。

"@Inject @ConfigProperty(name="payara.instance.https.port") int httpsPort;"

为什么我要获取http端口而不是https端口?

1 个答案:

答案 0 :(得分:1)

Payara Micro默认情况下不启动SSL端口,您需要在命令行中使用--sslport指定它。 Auto binding is also supported with the --autobindssl option

存在SSL端口后,@ConfigProperty注入应该有效,如果没有,则that would be a bug to be raised on GitHub