前几篇已将spring boot升级到了2.0.6,实际上还遇到了一些问题,前方只是简单说了下。这里详细说下升级过程和问题解决办法。
1、pagehelper升级
修改pom.xml,将分页插件pagehelper由1.1.0升级到1.2.5,只改相应的版本号,其他不动。
2、DEBUG模式
修改pom.xml加入如入配置:
<configuration>
<!-- debug 配置 -->
<jvmArguments>
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=4004
</jvmArguments>
</configuration>
3、解决废弃 WebMvcConfigurerAdapter 的问题
在《基于 Spring Boot 的 SSM 环境整合十二:使用JSP的自定义标签(tld)》中,为了关闭“Custom EL functions won't be loaded because no ObjectWrapper was specified ..”提示,创建了类“ TldConfig”,这个类是从“WebMvcConfigurerAdapter"继承的,但在spring boot2.0中"WebMvcConfigurerAdapter"已废弃,需要实现“WebSecurityConfigurer”接口ÿ