这篇文章记录一下Spring Boot 1.5.22升级至2.x的一些编译问题和对应方法。
将之前的版本由1.5.22升至2.0.0,然后升至2.1.0、2.2.0、2.3.0、2.3.3,结果证明编译期间产生的问题不多,从2.0.0到2.3.3更少,一般都是由于包的位置改变或者功能过期废弃产生的问题。
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.0.RELEASE</version>Relaxed Binding在Spring Boot 2中发生了变化,开发者有可能会碰到如下类似的错误,是在编译阶段就会报错的地方。
package org.springframework.boot.bind does not exist cannot find symbol [ERROR] symbol: class RelaxedPropertyResolver原因是已经内置了Relaxed Binding,但是如果对于业务不熟悉,也可以使用如下方式进行替换:
import部分:
import java.util.Properties; import org.springframework.boot.context.properties.bind.BindResult; import org.springframework.boot.context.properties.bind.Binder; import org.springframework.boot.context.properties.source.ConfigurationPropertySource; import org.springframework.boot.context.properties.source.ConfigurationPropertySources;定义部分:
private Properties propertyResolver;设定部分:
Iterable<ConfigurationPropertySource> sources = ConfigurationPropertySources.get(env); Binder binder = new Binder(sources); BindResult<Properties> bindResult = binder.bind("spring.datasource", Properties.class); this.propertyResolver= bindResult.get();SpringBootServletInitializer在Spring Boot 2的位置又发生了变化,开发者有可能会碰到如下类似的错误,是在编译阶段就会报错的地方。
package org.springframework.boot.bind does not exist cannot find symbol [ERROR] symbol: class RelaxedPropertyResolver在Spring Boot 1.5 中,org.springframework.boot.context.web.SpringBootServletInitializer就deprecated,转移至org.springframework.boot.web.support.SpringBootServletInitializer,而在Spring Boot 2.0中
需要使用org.springframework.boot.web.servlet.support.SpringBootServletInitializer。
修改前代码示例 import org.springframework.boot.web.support.SpringBootServletInitializer; 修改后代码示例 import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;JSONObject的使用中会扔出JSONException
用try…catch包裹起来
修改前代码示例 JSONObject jsonObject = new JSONObject(param.get()); boolean isBuilding = jsonObject.getBoolean("building"); 修改后代码示例 boolean isBuilding = false; try { jsonObject = new JSONObject(param.get()); isBuilding = jsonObject.getBoolean("building"); } catch (JSONException e) { e.printStackTrace(); }似乎2.3.0中搞丢了?详细参看:
https://github.com/spring-projects/spring-boot/issues/21465手动在Dependency中添加如下最后一版的javax.validation 即可
pom中添加内容 <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>2.0.1.Final</version> </dependency>这篇文章记录了几个升级至2.x常见的编译问题,相对来说编译问题还是非常容易定位的,参考文档中也列出了Spring Boot 2.0官方给的升级指南,建议参看一下。
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.0-Migration-Guide
淼叔 认证博客专家 神经网络 TensorFlow NLP 资深架构师,PMP、OCP、CSM、HPE University讲师,EXIN DevOps Professional与DevOps Master认证讲师,曾担任HPE GD China DevOps & Agile Leader,帮助企业级客户提供DevOps咨询培训以及实施指导。熟悉通信和金融领域,有超过十年金融外汇行业的架构设计、开发、维护经验,在十几年的IT从业生涯中拥有了软件开发设计领域接近全生命周期的经验和知识积累,著有企业级DevOps技术与工具实战。