使用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