如何在Wildfly14上配置JavaMailSender

时间:2019-06-22 07:19:29

标签: spring-boot wildfly-10

我想在Wildfly14上配置邮件发件人。谁能告诉我从头到尾进行配置的方法。

我已在application.property上成功配置,但我想将该主机名,用户名和密码存储在wildfly中,而不是在application.property中。

这是我在application.property上配置的代码

spring.mail.host=xxx
spring.mail.port=25
spring.mail.username=xxx
spring.mail.password=xxx

1 个答案:

答案 0 :(得分:1)

在standalone.xml中的system-properties标签下添加所有必需的属性,例如:

<system-properties>
        <property name="spring.mail.host" value=""/>
        <property name="spring.mail.port" value=""/>
        <property name="spring.mail.protocol" value=""/>
        <property name="spring.mail.username" value=""/>
        <property name="spring.mail.password" value=""/>
</system-properties>

类似地,您可以根据需要添加更多属性。