如何验证我正在使用的 Spring Boot 版本中是不是有 Spring 功能/Bug 修复?
Posted
技术标签:
【中文标题】如何验证我正在使用的 Spring Boot 版本中是不是有 Spring 功能/Bug 修复?【英文标题】:How to verify a Spring feature/Bug fix is available in the Spring boot version which i am using?如何验证我正在使用的 Spring Boot 版本中是否有 Spring 功能/Bug 修复? 【发布时间】:2019-02-24 10:24:28 【问题描述】:我正在开发一个 spring 批处理程序来处理来自 sql 的数据并写入 xml。我使用 staxEventItemWriter 来做到这一点。但由于这个问题https://jira.spring.io/browse/BATCH-1377 我无法修复命名空间问题。当我们查看这张 Jira 卡上的 cmets 时,它说它已在 2010 年修复。但它在我正在使用的最新 Spring Boot 版本中不可用。我尝试使用 Jira 卡中描述的补丁类,它对我来说工作正常。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.demo.sitemap</groupId>
<artifactId>SqlToXml</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SqlToXml</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-batch</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>6.1.0.jre8</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-oxm -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.10</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
【问题讨论】:
你有什么问题? 我从@Mahmoud Ben Hassine 那里得到了答案。我实际上是在检查如何验证我正在使用的 spring 版本上是否有可用的补丁。 :) 【参考方案1】:如何验证我正在使用的 Spring Boot 版本中是否有 Spring 功能/Bug 修复?
您正在使用 Spring Boot 2.0.4.RELEASE。这将带来 Spring Batch 版本 4.0.1.RELEASE。您可以使用 Spring Boot Initializr REST API 找到有关依赖项的更多详细信息。
问题BATCH-1377 在版本 2.1.0.RC1 中标记为已解决,并且在 4.0.1.RELEASE 中也可用。
但它在我正在使用的最新 Spring Boot 版本中不可用。我尝试使用 Jira 卡中描述的补丁类,它对我来说工作正常。
贡献者建议的补丁使用了一个额外的属性rootTagNamePrefix
,但为了与 Spring WS 保持一致,已根据this comment 修改为使用命名约定uriprefix:root
。问题已在此处修复:https://github.com/spring-projects/spring-batch/commit/f56ee747296961917caa38fa9e14785dafc0b18b
因此,在您的情况下,如果您想将命名空间添加到根标记,则需要使用此命名约定。请参阅此处的示例:https://github.com/spring-projects/spring-batch/blob/f56ee747296961917caa38fa9e14785dafc0b18b/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/xml/StaxEventItemWriterTests.java#L287
【讨论】:
以上是关于如何验证我正在使用的 Spring Boot 版本中是不是有 Spring 功能/Bug 修复?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Spring Boot 应用程序中使用 Hibernate 验证进行 Bean 验证?
如何使用 jwt 公钥在 Spring Boot 中验证承载访问令牌
如何在 Spring Boot 中使用 RESTful 和基本身份验证
Spring Boot Keycloak - 如何验证承载令牌?
如何使用 spring security 和 spring boot 对 Google 用户进行身份验证,将 mongoDB 作为存储库?