今天创建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>注掉或者删除就可以了,小白阶段,只能写答案,过程望知道的指导一下原理吧

相关文章:

  • 2021-04-04
  • 2022-12-23
  • 2021-05-08
  • 2022-01-15
  • 2021-10-08
  • 2022-12-23
  • 2021-11-18
猜你喜欢
  • 2022-12-23
  • 2022-02-20
  • 2021-08-18
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
相关资源
相似解决方案