SSM框架整合遇到的问题
作者:互联网
在配置了官方提供的过滤器后,启动项目遇到java.lang.ClassNotFoundException: org.springframework.web.filter.CharacterEncodingFilter这个问题,真让人头大,后发现是webmvc版本的问题。
之前我的是
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.1.9.RELEASE</version>
</dependency>
后改成
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.5</version>
</dependency>
问题就没有了,搞了好多天竟然是这个原因,真的无语。
标签:webmvc,问题,框架,遇到,spring,springframework,SSM,整合,org 来源: https://blog.csdn.net/qq_43242868/article/details/115099743