SpringBoot不是一个新框架,它是让开发者更快的开发Spring应用的一条捷径。使用它和使用标准java类库一样,只要简单的指定合适的 spring-boot-*.jar 就可以了。这里我们说怎么用maven导入SpringBoot的包。
SpringBoot要去Maven的版本达到3.2或以上,Maven的下载地址是 maven.apache.org.
SpringBoot的依赖包形式都如 org.springframework.boot + groupId,一般是继承项目 spring-boot-starter-parent。下面是一个典型的POM文件:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<? 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.example</ groupId >
< artifactId >myproject</ artifactId >
< version >0.0.1-SNAPSHOT</ version >
<!-- Inherit defaults from Spring Boot -->
< parent >
< groupId >org.springframework.boot</ groupId >
< artifactId >spring-boot-starter-parent</ artifactId >
< version >1.3.0.BUILD-SNAPSHOT</ version >
</ parent >
<!-- Add typical dependencies for a web application -->
< dependencies >
< dependency >
< groupId >org.springframework.boot</ groupId >
< artifactId >spring-boot-starter-web</ artifactId >
</ dependency >
</ dependencies >
<!-- Package as an executable jar -->
< build >
< plugins >
< plugin >
< groupId >org.springframework.boot</ groupId >
< artifactId >spring-boot-maven-plugin</ artifactId >
</ plugin >
</ plugins >
</ build >
<!-- 使用 Spring repositories -->
<!-- (我们使用的是SNAPSHOT版本,如果用RELEASE版本下面的偶不用写) -->
< repositories >
< repository >
< id >spring-snapshots</ id >
< url >http://repo.spring.io/snapshot</ url >
< snapshots >< enabled >true</ enabled ></ snapshots >
</ repository >
< repository >
< id >spring-milestones</ id >
< url >http://repo.spring.io/milestone</ url >
</ repository >
</ repositories >
< pluginRepositories >
< pluginRepository >
< id >spring-snapshots</ id >
< url >http://repo.spring.io/snapshot</ url >
</ pluginRepository >
< pluginRepository >
< id >spring-milestones</ id >
< url >http://repo.spring.io/milestone</ url >
</ pluginRepository >
</ pluginRepositories >
</ project >
|
Parent里面把版本指定好了,下面的依赖项就不能指定版本了。如果你不想要它固定的版本,可以自己修改。怎么改呢?很简单,只要指定scope为import就行:
1
2
3
4
5
6
7
8
9
10
11
12
|
< dependencyManagement >
< dependencies >
< dependency >
<!-- Import dependency management from Spring Boot -->
< groupId >org.springframework.boot</ groupId >
< artifactId >spring-boot-dependencies</ artifactId >
< version >1.3.0.BUILD-SNAPSHOT</ version >
< type >pom</ type >
< scope >import</ scope >
</ dependency >
</ dependencies >
</ dependencyManagement >
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://somefuture.iteye.com/blog/2229482