spring boot 依赖配置
Posted lijun6
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 依赖配置相关的知识,希望对你有一定的参考价值。
虽然springboot号称是零配置 配置文件确实不需要,但是 依赖还是要有的
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.0.RELEASE</version>
</parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.0.RELEASE</version>
</parent>
<properties>
<java.version>1.7</java.version>
</properties>
<java.version>1.7</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-activemq</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-activemq</artifactId>
</dependency>
</dependencies>
以上是关于spring boot 依赖配置的主要内容,如果未能解决你的问题,请参考以下文章
使用 Spring Security 配置 Spring Boot 会导致构建失败,因为引用缺少依赖项