HV000184: ParameterMessageInterpolator has been chosen, EL interpolation will not be supported问题解决

今天创建springboot项目的时候添加完依赖启动出现了这个错误

2017-04-21 11:59:07.341  WARN 9532 --- [           main] o.h.v.m.ParameterMessageInterpolator     : HV000184: ParameterMessageInterpolator has been chosen, EL interpolation will not be supported

后来经过一番查询后找到的解决方案如下:

        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-tomcatartifactId>
            <scope>providedscope>
        dependency>

问题就出在这个依赖上,解决方法把provided注掉或者删除就可以了,小白阶段,只能写答案,过程望知道的指导一下原理吧

这位的问题跟我相似: spring boot jsp之Intellij异常

你可能感兴趣的:(java)