Skip to content

Commit 10dd400

Browse files
vladdostersnicoll
authored andcommitted
Polish README
See gh-24981
1 parent a14bf7a commit 10dd400

File tree

1 file changed

+21
-23
lines changed

1 file changed

+21
-23
lines changed

README.adoc

Lines changed: 21 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ We also provide a command line tool that runs spring scripts.
1111
Our primary goals are:
1212

1313
* Provide a radically faster and widely accessible getting started experience for all Spring development.
14-
* Be opinionated out of the box, but get out of the way quickly as requirements start to diverge from the defaults.
15-
* Provide a range of non-functional features that are common to large classes of projects (e.g. embedded servers, security, metrics, health checks, externalized configuration).
14+
* Be opinionated, but get out of the way quickly as requirements start to diverge from the defaults.
15+
* Provide a range of non-functional features common to large classes of projects (for example, embedded servers, security, metrics, health checks, externalized configuration).
1616
* Absolutely no code generation and no requirement for XML configuration.
1717
1818
@@ -47,11 +47,11 @@ Here is a quick teaser of a complete Spring Boot application in Java:
4747

4848

4949
== Getting help
50-
Having trouble with Spring Boot? We'd like to help!
50+
Are you having trouble with Spring Boot? We want to help!
5151

5252
* Check the {docs}/html/[reference documentation], especially the {docs}/html/howto.html#howto[How-to's] -- they provide solutions to the most common questions.
53-
* Learn the Spring basics -- Spring Boot builds on many other Spring projects, check the https://spring.io[spring.io] web-site for a wealth of reference documentation.
54-
If you are just starting out with Spring, try one of the https://spring.io/guides[guides].
53+
* Learn the Spring basics -- Spring Boot builds on many other Spring projects; check the https://spring.io[spring.io] web-site for a wealth of reference documentation.
54+
If you are new to Spring, try one of the https://spring.io/guides[guides].
5555
* If you are upgrading, read the {github}/wiki[release notes] for upgrade instructions and "new and noteworthy" features.
5656
* Ask a question - we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-boot[`spring-boot`].
5757
You can also chat with the community on https://gitter.im/spring-projects/spring-boot[Gitter].
@@ -65,9 +65,9 @@ If you want to raise an issue, please follow the recommendations below:
6565

6666
* Before you log a bug, please search the {github}/issues[issue tracker] to see if someone has already reported the problem.
6767
* If the issue doesn't already exist, {github}/issues/new[create a new issue].
68-
* Please provide as much information as possible with the issue report, we like to know the version of Spring Boot that you are using, as well as your Operating System and JVM version.
69-
* If you need to paste code, or include a stack trace use Markdown +++```+++ escapes before and after your text.
70-
* If possible try to create a test-case or project that replicates the problem and attach it to the issue.
68+
* Please provide as much information as possible with the issue report. We like to know the Spring Boot version, operating system, and JVM version you're using.
69+
* If you need to paste code or include a stack trace, use Markdown. +++```+++ escapes before and after your text.
70+
* If possible, try to create a test-case or project that replicates the problem and attach it to the issue.
7171

7272

7373

@@ -89,26 +89,24 @@ If you want to build everything, use the `build` task:
8989
$ ./gradlew build
9090
----
9191

92-
93-
9492
== Modules
95-
There are a number of modules in Spring Boot, here is a quick overview:
93+
There are several modules in Spring Boot. Here is a quick overview:
9694

9795

9896

9997
=== spring-boot
100-
The main library providing features that support the other parts of Spring Boot, these include:
98+
The main library providing features that support the other parts of Spring Boot. These include:
10199

102100
* The `SpringApplication` class, providing static convenience methods that can be used to write a stand-alone Spring Application.
103101
Its sole job is to create and refresh an appropriate Spring `ApplicationContext`.
104-
* Embedded web applications with a choice of container (Tomcat, Jetty or Undertow).
102+
* Embedded web applications with a choice of container (Tomcat, Jetty, or Undertow).
105103
* First class externalized configuration support,
106104
* Convenience `ApplicationContext` initializers, including support for sensible logging defaults.
107105

108106

109107

110108
=== spring-boot-autoconfigure
111-
Spring Boot can configure large parts of common applications based on the content of their classpath.
109+
Spring Boot can configure large parts of typical applications based on the content of their classpath.
112110
A single `@EnableAutoConfiguration` annotation triggers auto-configuration of the Spring context.
113111

114112
Auto-configuration attempts to deduce which beans a user might need. For example, if `HSQLDB` is on the classpath, and the user has not configured any database connections, then they probably want an in-memory database to be defined.
@@ -118,13 +116,13 @@ Auto-configuration will always back away as the user starts to define their own
118116

119117
=== spring-boot-starters
120118
Starters are a set of convenient dependency descriptors that you can include in your application.
121-
You get a one-stop-shop for all the Spring and related technology that you need without having to hunt through sample code and copy paste loads of dependency descriptors.
122-
For example, if you want to get started using Spring and JPA for database access include the `spring-boot-starter-data-jpa` dependency in your project, and you are good to go.
119+
You get a one-stop-shop for all the Spring and related technology you need without having to hunt through sample code and copy paste loads of dependency descriptors.
120+
For example, if you want to get started using Spring and JPA for database access, include the `spring-boot-starter-data-jpa` dependency in your project, and you are good to go.
123121

124122

125123

126124
=== spring-boot-cli
127-
The Spring command line application compiles and runs Groovy source, allowing you to write the absolute minimum of code to get an application running.
125+
The Spring command line application compiles and runs Groovy source, allowing you to write the absolute minimum amount of code to get an application running.
128126
Spring CLI can also watch files, automatically recompiling and restarting when they change.
129127

130128

@@ -133,7 +131,7 @@ Spring CLI can also watch files, automatically recompiling and restarting when t
133131
Actuator endpoints let you monitor and interact with your application.
134132
Spring Boot Actuator provides the infrastructure required for actuator endpoints.
135133
It contains annotation support for actuator endpoints.
136-
Out of the box, this module provides a number of endpoints including the `HealthEndpoint`, `EnvironmentEndpoint`, `BeansEndpoint` and many more.
134+
This module provides many endpoints, including the `HealthEndpoint`, `EnvironmentEndpoint`, `BeansEndpoint`, and many more.
137135

138136

139137

@@ -151,8 +149,8 @@ This module contains core items and annotations that can be helpful when testing
151149

152150

153151
=== spring-boot-test-autoconfigure
154-
Like other Spring Boot auto-configuration modules, spring-boot-test-autoconfigure, provides auto-configuration for tests based on the classpath.
155-
It includes a number of annotations that can be used to automatically configure a slice of your application that needs to be tested.
152+
Like other Spring Boot auto-configuration modules, spring-boot-test-autoconfigure provides auto-configuration for tests based on the classpath.
153+
It includes many annotations that can automatically configure a slice of your application that needs to be tested.
156154

157155

158156

@@ -163,21 +161,21 @@ Generally you will not need to use `spring-boot-loader` directly, but instead wo
163161

164162

165163
=== spring-boot-devtools
166-
The spring-boot-devtools module provides additional development-time features such as automatic restarts, for a smoother application development experience.
164+
The spring-boot-devtools module provides additional development-time features, such as automatic restarts, for a smoother application development experience.
167165
Developer tools are automatically disabled when running a fully packaged application.
168166

169167

170168

171169
== Samples
172170
Groovy samples for use with the command line application are available in link:spring-boot-project/spring-boot-cli/samples[spring-boot-cli/samples].
173-
To run the CLI samples type `spring run <sample>.groovy` from samples directory.
171+
To run the CLI samples, type `spring run <sample>.groovy` from the samples directory.
174172

175173

176174

177175
== Guides
178176
The https://spring.io/[spring.io] site contains several guides that show how to use Spring Boot step-by-step:
179177

180-
* https://spring.io/guides/gs/spring-boot/[Building an Application with Spring Boot] is a very basic guide that shows you how to create an application, run it and add some management services.
178+
* https://spring.io/guides/gs/spring-boot/[Building an Application with Spring Boot] is an introductory guide that shows you how to create an application, run it, and add some management services.
181179
* https://spring.io/guides/gs/actuator-service/[Building a RESTful Web Service with Spring Boot Actuator] is a guide to creating a REST web service and also shows how the server can be configured.
182180
* https://spring.io/guides/gs/convert-jar-to-war/[Converting a Spring Boot JAR Application to a WAR] shows you how to run applications in a web server as a WAR file.
183181

0 commit comments

Comments
 (0)