Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
f88c5835
Commit
f88c5835
authored
Apr 01, 2016
by
Johnny Lim
Committed by
Stephane Nicoll
Apr 01, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
Closes gh-5553
parent
27b0666f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
14 deletions
+7
-14
pom.xml
spring-boot-dependencies/pom.xml
+4
-4
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+2
-2
using-spring-boot.adoc
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
+1
-1
generateStarterTables.groovy
...ng-boot-docs/src/main/groovy/generateStarterTables.groovy
+0
-7
No files found.
spring-boot-dependencies/pom.xml
View file @
f88c5835
...
...
@@ -556,20 +556,20 @@
<version>
${cassandra-driver.version}
</version>
<exclusions>
<exclusion>
<artifactId>
slf4j-log4j12
</artifactId>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-log4j12
</artifactId>
</exclusion>
<exclusion>
<artifactId>
log4j
</artifactId>
<groupId>
log4j
</groupId>
<artifactId>
log4j
</artifactId>
</exclusion>
<exclusion>
<artifactId>
guava
</artifactId>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
</exclusion>
<exclusion>
<artifactId>
netty-handler
</artifactId>
<groupId>
io.netty
</groupId>
<artifactId>
netty-handler
</artifactId>
</exclusion>
</exclusions>
</dependency>
...
...
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
f88c5835
...
...
@@ -1215,7 +1215,7 @@ root of the classpath, or in a location specified by the Spring `Environment` pr
You can force Spring Boot to use a particular logging system using the
`org.springframework.boot.logging.LoggingSystem` system property. The value should be
the fully-qualified class name of a `LoggingSystem` implementation. You can also disable
Spring Boot's logging configuration entirely by us
ed
a value of `none`.
Spring Boot's logging configuration entirely by us
ing
a value of `none`.
NOTE: Since logging is initialized *before* the `ApplicationContext` is created, it isn't
possible to control logging from `@PropertySources` in Spring `@Configuration` files.
...
...
@@ -4359,7 +4359,7 @@ how your tests will run:
* `MOCK` -- Loads a `WebApplicationContext` and provides a mock servlet environment.
Embedded servlet containers are not started when using this annotation. If servlet
APIs are not on your classpath this mode will transpar
a
ntly fallback to creating a
APIs are not on your classpath this mode will transpar
e
ntly fallback to creating a
regular non-web `ApplicationContext`.
* `RANDOM_PORT` -- Loads an `EmbeddedWebApplicationContext` and provides a real
servlet environment. Embedded servlet containers are started and listening on a random
...
...
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
View file @
f88c5835
...
...
@@ -378,7 +378,7 @@ The following application starters are provided by Spring Boot under the
include::../../../target/generated-resources/application-starters.adoc[]
In addition to the application starters, the following starters can be used to add
_<<production-ready-feat
y
res.adoc#production-ready, production ready>>_ features:
_<<production-ready-feat
u
res.adoc#production-ready, production ready>>_ features:
.Spring Boot production starters
include::../../../target/generated-resources/production-starters.adoc[]
...
...
spring-boot-docs/src/main/groovy/generateStarterTables.groovy
View file @
f88c5835
...
...
@@ -48,13 +48,6 @@ def addStarterCrossLinks(String input) {
input
.
replaceAll
(
'(spring-boot-starter[A-Za-z-]*)'
,
'<<$1,`$1`>>'
)
}
def
addBackTicksIfNecessary
(
String
input
)
{
if
(!
input
.
contains
(
'`'
))
{
return
"`${input}`"
}
input
}
def
getDependencies
(
def
pom
)
{
dependencies
=
[]
pom
.
dependencies
.
dependency
.
each
{
dependency
->
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment