使用idea 搭建Springboot啓動時出現警告: HV000184: ParameterMessageInterpolator has been chosen, EL interpolation will not be supportedspring
致使啓動失敗 搜索過程當中發現解決方案一: - 註釋 spring-boot-starter-tomcat 依賴的scope標籤;(參考http://blog.csdn.net/fuyaopingbu/article/details/70314236) 但該方式沒有說明緣由爲何要註釋tomcat
而後繼續搜索發現解決方案二 - 在Maven Projects, 找到spring-boot:run,經過該方式啓動;(參考:http://blog.csdn.net/neosmith/article/details/50924681) 原來是在 Intellij Idea 15 中使用maven時,全部 scope 爲 provided 的依賴都是不會被加入到 classpath 中的,因此在不修改pom文件的狀況下,經過該方式啓動解決問題;maven