目前我使用payara-micro-4.1.2.174
和microprofile-config-api.version 1.2.1
并注入以下内容:
但始终获取http端口,而不是https端口。
"@Inject @ConfigProperty(name="payara.instance.https.port") int httpsPort;"
为什么我要获取http端口而不是https端口?
答案 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。