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
73c65286
Commit
73c65286
authored
Nov 18, 2017
by
Johnny Lim
Committed by
Phillip Webb
Nov 18, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
parent
7ff2cb5d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
README.adoc
ci/README.adoc
+1
-1
loggers.adoc
...or-autoconfigure/src/main/asciidoc/endpoints/loggers.adoc
+1
-1
shutdown.adoc
...r-autoconfigure/src/main/asciidoc/endpoints/shutdown.adoc
+1
-1
ReactiveSecurityAutoConfigurationTests.java
...rity/reactive/ReactiveSecurityAutoConfigurationTests.java
+1
-1
spring-boot-features.adoc
...ing-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+2
-2
CollectionBinderTests.java
...k/boot/context/properties/bind/CollectionBinderTests.java
+1
-1
SampleSecureWebFluxApplication.java
...sample/secure/webflux/SampleSecureWebFluxApplication.java
+1
-1
No files found.
ci/README.adoc
View file @
73c65286
...
...
@@ -8,7 +8,7 @@ $ fly -t spring set-pipeline -p spring-boot -c ci/pipeline.yml -l ci/parameters.
----
NOTE: This assumes that you have credhub integration configured with the appropriate
secrets
secrets
.
=== Release
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/endpoints/loggers.adoc
View file @
73c65286
...
...
@@ -46,7 +46,7 @@ include::{snippets}loggers/single/http-response.adoc[]
[[loggers
e
-single-response-structure]]
[[loggers-single-response-structure]]
=== Response Structure
The response contains details of the requested logger. The following table describes the
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/endpoints/shutdown.adoc
View file @
73c65286
...
...
@@ -19,7 +19,7 @@ include::{snippets}shutdown/http-response.adoc[]
[[shutdow
m
-shutting-down-response-structure]]
[[shutdow
n
-shutting-down-response-structure]]
=== Response Structure
The response contains details of the result of the shutdown request. The following table
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/reactive/ReactiveSecurityAutoConfigurationTests.java
View file @
73c65286
...
...
@@ -75,7 +75,7 @@ public class ReactiveSecurityAutoConfigurationTests {
}
@Test
public
void
doesNotConfigureDefaultUserIfUserDetails
Repository
Available
()
{
public
void
doesNotConfigureDefaultUserIfUserDetails
Service
Available
()
{
this
.
contextRunner
.
withUserConfiguration
(
UserConfig
.
class
,
TestConfig
.
class
)
.
withConfiguration
(
AutoConfigurations
.
of
(
ReactiveSecurityAutoConfiguration
.
class
))
...
...
spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
73c65286
...
...
@@ -6686,7 +6686,7 @@ It then becomes important not to litter the application's main class with config
settings that are specific to a particular area of its functionality.
Assume that you are using Spring Batch and you rely on the auto-configuration for it.
You
r
could define your `@SpringBootApplication` as follows:
You could define your `@SpringBootApplication` as follows:
[source,java,indent=0]
----
...
...
@@ -6708,7 +6708,7 @@ at the same level as your application, as shown in the following example:
----
NOTE: Depending on the complexity of your application, you may either have a single
`
Application
Configuration` class for your customizations or one class per domain area when
`
@
Configuration` class for your customizations or one class per domain area when
it makes sense. The latter approach lets you enable it in one of your tests, if necessary,
with the `@Import` annotation.
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/CollectionBinderTests.java
View file @
73c65286
...
...
@@ -362,7 +362,7 @@ public class CollectionBinderTests {
Bindable
<
BeanWithNestedCollection
>
target
=
Bindable
.
of
(
BeanWithNestedCollection
.
class
);
BeanWithNestedCollection
foo
=
this
.
binder
.
bind
(
"foo"
,
target
).
get
();
assertThat
(
foo
.
getValue
()).
is
NotNull
(
);
assertThat
(
foo
.
getValue
()).
is
EqualTo
(
"one"
);
assertThat
(
foo
.
getFoos
().
get
(
0
).
getValue
()).
isEqualTo
(
"two"
);
assertThat
(
foo
.
getFoos
().
get
(
1
).
getValue
()).
isEqualTo
(
"three"
);
}
...
...
spring-boot-samples/spring-boot-sample-secure-webflux/src/main/java/sample/secure/webflux/SampleSecureWebFluxApplication.java
View file @
73c65286
...
...
@@ -41,7 +41,7 @@ public class SampleSecureWebFluxApplication {
}
@Bean
public
ReactiveUserDetailsService
userDetails
Repository
()
{
public
ReactiveUserDetailsService
userDetails
Service
()
{
return
new
MapReactiveUserDetailsService
(
User
.
withDefaultPasswordEncoder
()
.
username
(
"foo"
).
password
(
"password"
).
roles
(
"USER"
).
build
());
}
...
...
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