在配置了官方提供的过滤器后,启动项目遇到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>
问题就没有了,搞了好多天竟然是这个原因,真的无语。