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
79a97d9b
Commit
79a97d9b
authored
Dec 07, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4677 from izeye/polish-20151204
* pr/4677: Polish
parents
f7d3165e
ec7fed1e
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
AuthenticationAuditListener.java
...rk/boot/actuate/security/AuthenticationAuditListener.java
+1
-1
OnWebApplicationCondition.java
...ot/autoconfigure/condition/OnWebApplicationCondition.java
+1
-1
appendix-application-properties.adoc
...cs/src/main/asciidoc/appendix-application-properties.adoc
+1
-1
deployment.adoc
spring-boot-docs/src/main/asciidoc/deployment.adoc
+2
-2
getting-started.adoc
spring-boot-docs/src/main/asciidoc/getting-started.adoc
+1
-1
ConfigurationMetadataItem.java
...boot/configurationmetadata/ConfigurationMetadataItem.java
+1
-1
Layouts.java
...n/java/org/springframework/boot/loader/tools/Layouts.java
+1
-1
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/security/AuthenticationAuditListener.java
View file @
79a97d9b
...
@@ -29,7 +29,7 @@ import org.springframework.security.web.authentication.switchuser.Authentication
...
@@ -29,7 +29,7 @@ import org.springframework.security.web.authentication.switchuser.Authentication
import
org.springframework.util.ClassUtils
;
import
org.springframework.util.ClassUtils
;
/**
/**
* Default implementation of {@link AuthenticationAuditListener}.
* Default implementation of {@link A
bstractA
uthenticationAuditListener}.
*
*
* @author Dave Syer
* @author Dave Syer
*/
*/
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/OnWebApplicationCondition.java
View file @
79a97d9b
...
@@ -27,7 +27,7 @@ import org.springframework.web.context.WebApplicationContext;
...
@@ -27,7 +27,7 @@ import org.springframework.web.context.WebApplicationContext;
import
org.springframework.web.context.support.StandardServletEnvironment
;
import
org.springframework.web.context.support.StandardServletEnvironment
;
/**
/**
* {@link Condition} that checks for
a
the presence or absence of
* {@link Condition} that checks for the presence or absence of
* {@link WebApplicationContext}.
* {@link WebApplicationContext}.
*
*
* @author Dave Syer
* @author Dave Syer
...
...
spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
View file @
79a97d9b
spring-boot-docs/src/main/asciidoc/deployment.adoc
View file @
79a97d9b
...
@@ -323,7 +323,7 @@ https://boxfuse.com/docs/payloads/springboot.html#configuration
...
@@ -323,7 +323,7 @@ https://boxfuse.com/docs/payloads/springboot.html#configuration
[`application-boxfuse.properties`]
[`application-boxfuse.properties`]
file, Boxfuse will base its configuration based on the properties it contains.
file, Boxfuse will base its configuration based on the properties it contains.
At this point `boxfuse` will
start
create an image for your application, upload it,
At this point `boxfuse` will create an image for your application, upload it,
and then configure and start the necessary resources on AWS:
and then configure and start the necessary resources on AWS:
[indent=0,subs="verbatim,quotes,attributes"]
[indent=0,subs="verbatim,quotes,attributes"]
...
@@ -350,7 +350,7 @@ and then configure and start the necessary resources on AWS:
...
@@ -350,7 +350,7 @@ and then configure and start the necessary resources on AWS:
Your application should now be up and running on AWS.
Your application should now be up and running on AWS.
There's a blog on https://boxfuse.com/blog/spring-boot-ec2.html[deploying Spring Boot apps
There's a blog on https://boxfuse.com/blog/spring-boot-ec2.html[deploying Spring Boot apps
on EC2] as well as
well as
https://boxfuse.com/docs/payloads/springboot.html[documentation
on EC2] as well as https://boxfuse.com/docs/payloads/springboot.html[documentation
for the Boxfuse Spring Boot integration] on their website that will get you started with a
for the Boxfuse Spring Boot integration] on their website that will get you started with a
Maven build to run the app.
Maven build to run the app.
...
...
spring-boot-docs/src/main/asciidoc/getting-started.adoc
View file @
79a97d9b
...
@@ -539,7 +539,7 @@ Spring Boot provides a number of "`Starter POMs`" that make easy to add jars to
...
@@ -539,7 +539,7 @@ Spring Boot provides a number of "`Starter POMs`" that make easy to add jars to
classpath. Our sample application has already used `spring-boot-starter-parent` in the
classpath. Our sample application has already used `spring-boot-starter-parent` in the
`parent` section of the POM. The `spring-boot-starter-parent` is a special starter
`parent` section of the POM. The `spring-boot-starter-parent` is a special starter
that provides useful Maven defaults. It also provides a
that provides useful Maven defaults. It also provides a
<<using-spring-boot.adoc#using-boot-dependency-management,`dependency-management`
,
>>
<<using-spring-boot.adoc#using-boot-dependency-management,`dependency-management`>>
section so that you can omit `version` tags for "`blessed`" dependencies.
section so that you can omit `version` tags for "`blessed`" dependencies.
Other "`Starter POMs`" simply provide dependencies that you are likely to need when
Other "`Starter POMs`" simply provide dependencies that you are likely to need when
...
...
spring-boot-tools/spring-boot-configuration-metadata/src/main/java/org/springframework/boot/configurationmetadata/ConfigurationMetadataItem.java
View file @
79a97d9b
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
package
org
.
springframework
.
boot
.
configurationmetadata
;
package
org
.
springframework
.
boot
.
configurationmetadata
;
/**
/**
* An extension of {@link ConfigurationMetadataProperty} that provides
the
a reference to
* An extension of {@link ConfigurationMetadataProperty} that provides a reference to
* its source.
* its source.
*
*
* @author Stephane Nicoll
* @author Stephane Nicoll
...
...
spring-boot-tools/spring-boot-loader-tools/src/main/java/org/springframework/boot/loader/tools/Layouts.java
View file @
79a97d9b
...
@@ -37,7 +37,7 @@ public final class Layouts {
...
@@ -37,7 +37,7 @@ public final class Layouts {
}
}
/**
/**
* Return
the
a layout for the given source file.
* Return a layout for the given source file.
* @param file the source file
* @param file the source file
* @return a {@link Layout}
* @return a {@link Layout}
*/
*/
...
...
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