Spring Boot + Elastic Beanstalk .ebextensions in JAR

前端 未结 5 1951
遇见更好的自我
遇见更好的自我 2021-02-13 15:44

I have a very standard Spring Boot application (with a application.properties properties file located in standard /src/main/resources folder) which I\'

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-13 16:20

    Actually it is spring-boot jar related issue. As you are using 1.2.6 version of spring-boot, which has some bugs like javamailsender issue. You need to upgrade your spring boot version more than 1.3.0.release.

    In this ticket#3478, the mailsender issue is fixed for spring-boot. So you can upgrade to latest version or others more than 1.3.0 release.

    
    
        org.springframework.boot
        spring-boot-starter
        1.3.5.RELEASE
    
    

    Hope this will solve your issue.

提交回复
热议问题