为弹簧靴 1.2.8 准备一个 Pom
Posted
技术标签:
【中文标题】为弹簧靴 1.2.8 准备一个 Pom【英文标题】:prepare a Pom for a spring boot 1.2.8 【发布时间】:2021-07-22 05:13:42 【问题描述】:我实际上是在为单体创建一个微服务,我必须使用自己的 DAO 和持久性。问题是用于持久化的版本是hibernate 4,所以只能用老版本的spring boot。
这是我的 pom.xml:
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.8.RELEASE</version>
<relativePath/>
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.7</java.version>
<start-class>com.example.DemoApplication</start-class>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.8.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<version>2.4.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.3.11.Final</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<addResources>true</addResources>
<jvmArguments>
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005
</jvmArguments>
</configuration>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.8.RELEASE</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
问题是:spring-boot-starter-parent 无法识别。我已经编译了所有的帖子,我完全不知道我能做些什么来解决这个问题......
【问题讨论】:
【参考方案1】:通过在 mvnrepository.com 上搜索,您可以找到要添加的依赖项。例如搜索 spring boot starter,您拥有所有版本。这是1.2.8 spring boot starter的链接
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter/1.2.8.RELEASE
如果您想了解用于 1.2.8 的所有版本的依赖项,请点击此处的列表链接: https://docs.spring.io/spring-boot/docs/1.2.8.RELEASE/reference/html/appendix-dependency-versions.html
所以你可以尝试为所有依赖项指定版本。
同时创建一个带有 2.4.0 的 springboot 项目(例如)不包括 hibernate 并手动添加旧版本的依赖项。
此链接可能会帮助您将 1.5 springboot 应用程序切换到版本 2。 https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.0-Migration-Guide 它可能可用于从 1.2.8 切换到 2.x。
之后,你必须重用的代码是否兼容 java 8...?
【讨论】:
非常感谢您的回答。它对我有很大帮助。因此,因为使用 hibernate 4 是降级 spring boot 版本的唯一原因,所以我尝试使用 spring boot 2.4.5 重新创建一个新的 pom.xml,并使用 4.1.4 版本添加依赖项 hibernate-core 。最终的。但它不起作用。我必须添加具体提及吗? 好吧,我的错,只是一个更改链接。非常感谢您的帮助:)以上是关于为弹簧靴 1.2.8 准备一个 Pom的主要内容,如果未能解决你的问题,请参考以下文章
弹簧靴 | JSONB Postgres |异常:无法加载类 [jsonb]
弹簧靴 |在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误