如何将SCP Neo中目标服务中的电子邮件配置绑定到Spring Boot应用程序?

2020-08-21 11:26发布

点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)我想在SAP Cloud Pla...

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


我想在SAP Cloud Platform Neo环境中部署Spring Boot应用程序。 它具有端点/sendmail ,该端点在被调用时向特定用户发送邮件。 现在,我已经在 application.properties 文件中对凭据进行了硬编码,并且可以正常工作。 该文件如下所示-

  spring.mail.host = smtp.gmail.com
 spring.mail.port = 587
 spring.mail.username = ...
 spring.mail.password = ...
 spring.mail.properties.mail.smtp.starttls.enable = true
 spring.mail.properties.mail.smtp.starttls.required = true
 spring.mail.properties.mail.smtp.auth = true
 spring.mail.properties.mail.smtp.connectiontimeout = 5000
 spring.mail.properties.mail.smtp.timeout = 5000
 spring.mail.properties.mail.smtp.writetimeout = 5000  

现在,我想利用SCP平台的目的地服务,在该服务中定义邮件帐户的凭据。 我想从目标服务中获取凭据。 因此,需要在 application.properties 文件中添加什么?

我曾在SCP-Cloud Foundry中执行过类似的操作,但用于其他服务(数据库)。 CF具有VCAP环境变量,可用于按以下方式获取凭据-

  spring.datasource.url = $ {vcap.services。$ {vcap.services.name} .credentials.url}  

是否可以在Neo中做同样的事情?

致谢

6条回答
N-Moskvin
2020-08-21 12:07

您好Boudhayan,

是的,您应该在WEB-INF文件夹下有一个web.xml文件,该文件的资源参考配置应类似于-

 <?xml version =" 1.0" encoding =" UTF-8"?>
 
   演示
 
   <资源参考>
     邮件/会话
      javax.mail.session 
   
 

 

一周热门 更多>