Spring Boot项目升级:1.5.22升级至2.x的编译问题总结

tech2025-03-03  13

这篇文章记录一下Spring Boot 1.5.22升级至2.x的一些编译问题和对应方法。

文章目录

POM修正问题与对应Relaxed Binding现象原因对应方法 SpringBootServletInitializer现象原因对应方法 JSONException现象原因对应方法 javax.validation现象原因对应方法 总结参考文档


POM修正

将之前的版本由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

现象

Relaxed Binding在Spring Boot 2中发生了变化,开发者有可能会碰到如下类似的错误,是在编译阶段就会报错的地方。

package org.springframework.boot.bind does not exist cannot find symbol [ERROR] symbol: class RelaxedPropertyResolver

原因

原因是已经内置了Relaxed Binding,但是如果对于业务不熟悉,也可以使用如下方式进行替换:

对应方法

修改前代码示例 import部分:import org.springframework.boot.bind.RelaxedPropertyResolver; 定义与设定部分:private RelaxedPropertyResolver propertyResolver; 修改后代码示例

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

现象

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;

JSONException

现象

现象: unreported exception org.json.JSONException; must be caught or declared to be thrown

原因

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(); }

javax.validation

现象

现象: 提示大量 package javax.validation does not exist以及其他的错误信息

原因

似乎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技术与工具实战。
最新回复(0)