|
|
@@ -64,18 +64,14 @@ In a project directory of your choosing, create the following subdirectory struc
|
|
64
|
64
|
|
|
65
|
65
|
<parent>
|
|
66
|
66
|
<groupId>org.springframework.boot</groupId>
|
|
67
|
|
- <artifactId>spring-boot-up-parent</artifactId>
|
|
|
67
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
68
|
68
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
|
69
|
69
|
</parent>
|
|
70
|
70
|
|
|
71
|
71
|
<dependencies>
|
|
72
|
72
|
<dependency>
|
|
73
|
73
|
<groupId>org.springframework.boot</groupId>
|
|
74
|
|
- <artifactId>spring-boot-up-web</artifactId>
|
|
75
|
|
- </dependency>
|
|
76
|
|
- <dependency>
|
|
77
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
78
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
74
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
79
|
75
|
</dependency>
|
|
80
|
76
|
</dependencies>
|
|
81
|
77
|
|
|
|
@@ -257,7 +253,7 @@ Add this to your build file's list of dependencies:
|
|
257
|
253
|
```xml
|
|
258
|
254
|
<dependency>
|
|
259
|
255
|
<groupId>org.springframework.boot</groupId>
|
|
260
|
|
- <artifactId>spring-boot-up-jetty</artifactId>
|
|
|
256
|
+ <artifactId>spring-boot-starter-jetty</artifactId>
|
|
261
|
257
|
</dependency>
|
|
262
|
258
|
```
|
|
263
|
259
|
|
|
|
@@ -398,4 +394,4 @@ Congratulations!
|
|
398
|
394
|
----------------
|
|
399
|
395
|
Spring Boot is powerful, but frankly too big to fit into a single guide. This is just a sampling.
|
|
400
|
396
|
|
|
401
|
|
-As you read more of this site's getting started guides, you will see it used all over the place. It might not be obvious at first, because Spring Boot is so good at adding the things you need without getting in your way. But after using it for a bit, you may wonder how you lived without it.
|
|
|
397
|
+As you read more of this site's getting started guides, you will see it used all over the place. It might not be obvious at first, because Spring Boot is so good at adding the things you need without getting in your way. But after using it for a bit, you may wonder how you lived without it.
|