I have a very standard Spring Boot application (with a application.properties
properties file located in standard /src/main/resources
folder) which I\'
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.