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

来源:互联网 发布:政府公告软件 编辑:程序博客网 时间:2024/05/18 15:51

今天创建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.boot</groupId>            <artifactId>spring-boot-starter-tomcat</artifactId>            <scope>provided</scope>        </dependency>

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

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

2 0
原创粉丝点击