Maven 依赖项 SpringBoot 和 MySQL
Posted
技术标签:
【中文标题】Maven 依赖项 SpringBoot 和 MySQL【英文标题】:Maven Dependencies SpringBoot and MySQL 【发布时间】:2018-04-10 06:05:41 【问题描述】:我们有带有 Spring Rest 控制器的 web 应用程序。我们在 Spring Boot 1.5.8 上运行。我们需要添加 mysql 数据库连接器和所有必需的依赖项。这是我们当前的 pom.xml。我们尝试了许多选择,但都没有成功。我们已经尝试添加基于 mvndependencies.com 的依赖项。以及完成项目并从中复制依赖项。
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.8.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-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
<version>5.1</version>
</dependency>
<dependency>
<groupId>com.github.scribejava</groupId>
<artifactId>scribejava-apis</artifactId>
<version>4.2.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
提前致谢
【问题讨论】:
您到底面临什么问题?有任何错误信息吗? 【参考方案1】:如果你想使用你需要的spring boot数据:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
如果你想添加 MySql 支持,你需要的唯一依赖是 MySql 驱动:
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
两个依赖版本都应该由spring boot管理。
【讨论】:
以上是关于Maven 依赖项 SpringBoot 和 MySQL的主要内容,如果未能解决你的问题,请参考以下文章