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
ee6fc8d9
Commit
ee6fc8d9
authored
Jul 28, 2015
by
izeye
Committed by
Stephane Nicoll
Jul 28, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos
Closes gh-3608
parent
32128a6a
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
ServerProperties.java
...ingframework/boot/autoconfigure/web/ServerProperties.java
+2
-2
HttpTunnelPayloadForwarderTests.java
...tools/tunnel/payload/HttpTunnelPayloadForwarderTests.java
+1
-1
appendix-configuration-metadata.adoc
...cs/src/main/asciidoc/appendix-configuration-metadata.adoc
+1
-1
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+1
-1
ApplicationArguments.java
...n/java/org/springframework/boot/ApplicationArguments.java
+2
-2
ApplicationRunner.java
...main/java/org/springframework/boot/ApplicationRunner.java
+1
-1
DefaultApplicationArgumentsTests.java
...pringframework/boot/DefaultApplicationArgumentsTests.java
+1
-1
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java
View file @
ee6fc8d9
...
@@ -206,7 +206,7 @@ public class ServerProperties implements EmbeddedServletContainerCustomizer, Ord
...
@@ -206,7 +206,7 @@ public class ServerProperties implements EmbeddedServletContainerCustomizer, Ord
}
}
/**
/**
*
S
et the session timeout
*
G
et the session timeout
* @return the session timeout
* @return the session timeout
* @deprecated since 1.3.0 in favor of {@code session.timeout}.
* @deprecated since 1.3.0 in favor of {@code session.timeout}.
*/
*/
...
@@ -217,7 +217,7 @@ public class ServerProperties implements EmbeddedServletContainerCustomizer, Ord
...
@@ -217,7 +217,7 @@ public class ServerProperties implements EmbeddedServletContainerCustomizer, Ord
}
}
/**
/**
*
G
et the session timeout
*
S
et the session timeout
* @param sessionTimeout the session timeout
* @param sessionTimeout the session timeout
* @deprecated since 1.3.0 in favor of {@code session.timeout}.
* @deprecated since 1.3.0 in favor of {@code session.timeout}.
*/
*/
...
...
spring-boot-devtools/src/test/java/org/springframework/boot/devtools/tunnel/payload/HttpTunnelPayloadForwarderTests.java
View file @
ee6fc8d9
...
@@ -41,7 +41,7 @@ public class HttpTunnelPayloadForwarderTests {
...
@@ -41,7 +41,7 @@ public class HttpTunnelPayloadForwarderTests {
public
ExpectedException
thrown
=
ExpectedException
.
none
();
public
ExpectedException
thrown
=
ExpectedException
.
none
();
@Test
@Test
public
void
targetChannelMustNoBeNull
()
throws
Exception
{
public
void
targetChannelMustNo
t
BeNull
()
throws
Exception
{
this
.
thrown
.
expect
(
IllegalArgumentException
.
class
);
this
.
thrown
.
expect
(
IllegalArgumentException
.
class
);
this
.
thrown
.
expectMessage
(
"TargetChannel must not be null"
);
this
.
thrown
.
expectMessage
(
"TargetChannel must not be null"
);
new
HttpTunnelPayloadForwarder
(
null
);
new
HttpTunnelPayloadForwarder
(
null
);
...
...
spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc
View file @
ee6fc8d9
...
@@ -499,7 +499,7 @@ on the classpath. This provider supports these parameters:
...
@@ -499,7 +499,7 @@ on the classpath. This provider supports these parameters:
The following types can be used:
The following types can be used:
* Any `java.lang.Enum` that list the possible values for the property (By all means, try to
* Any `java.lang.Enum` that list
s
the possible values for the property (By all means, try to
define the property with the `Enum` type instead as no further hint should be required for
define the property with the `Enum` type instead as no further hint should be required for
the IDE to auto-complete the values).
the IDE to auto-complete the values).
* `java.nio.charset.Charset`: auto-completion of charset/encoding values (e.g. `UTF-8`)
* `java.nio.charset.Charset`: auto-completion of charset/encoding values (e.g. `UTF-8`)
...
...
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
ee6fc8d9
...
@@ -1880,7 +1880,7 @@ provider for more flexibility).
...
@@ -1880,7 +1880,7 @@ provider for more flexibility).
To limit the scope that the client asks for when it obtains an access token you can set
To limit the scope that the client asks for when it obtains an access token you can set
`security.oauth2.client.scope` (comma separated or an array in YAML). By default the scope
`security.oauth2.client.scope` (comma separated or an array in YAML). By default the scope
is empty and it is up to
to
Authorization Server to decide what the defaults should be,
is empty and it is up to Authorization Server to decide what the defaults should be,
usually depending on the settings in the client registration that it holds.
usually depending on the settings in the client registration that it holds.
NOTE: There is also a setting for `security.oauth2.client.client-authentication-scheme`
NOTE: There is also a setting for `security.oauth2.client.client-authentication-scheme`
...
...
spring-boot/src/main/java/org/springframework/boot/ApplicationArguments.java
View file @
ee6fc8d9
...
@@ -20,7 +20,7 @@ import java.util.List;
...
@@ -20,7 +20,7 @@ import java.util.List;
import
java.util.Set
;
import
java.util.Set
;
/**
/**
* Provides access to the arguments that were used run a {@link SpringApplication}.
* Provides access to the arguments that were used
to
run a {@link SpringApplication}.
*
*
* @author Phillip Webb
* @author Phillip Webb
* @since 1.3.0
* @since 1.3.0
...
@@ -44,7 +44,7 @@ public interface ApplicationArguments {
...
@@ -44,7 +44,7 @@ public interface ApplicationArguments {
* Return whether the set of option arguments parsed from the arguments contains an
* Return whether the set of option arguments parsed from the arguments contains an
* option with the given name.
* option with the given name.
* @param name the name to check
* @param name the name to check
* @return {@code true} if the arguments contain
s
an option with the given name
* @return {@code true} if the arguments contain an option with the given name
*/
*/
boolean
containsOption
(
String
name
);
boolean
containsOption
(
String
name
);
...
...
spring-boot/src/main/java/org/springframework/boot/ApplicationRunner.java
View file @
ee6fc8d9
...
@@ -21,7 +21,7 @@ import org.springframework.core.annotation.Order;
...
@@ -21,7 +21,7 @@ import org.springframework.core.annotation.Order;
/**
/**
* Interface used to indicate that a bean should <em>run</em> when it is contained within
* Interface used to indicate that a bean should <em>run</em> when it is contained within
* a {@link SpringApplication}. Multiple {@link Application
Arguments
} beans can be defined
* a {@link SpringApplication}. Multiple {@link Application
Runner
} beans can be defined
* within the same application context and can be ordered using the {@link Ordered}
* within the same application context and can be ordered using the {@link Ordered}
* interface or {@link Order @Order} annotation.
* interface or {@link Order @Order} annotation.
*
*
...
...
spring-boot/src/test/java/org/springframework/boot/DefaultApplicationArgumentsTests.java
View file @
ee6fc8d9
...
@@ -42,7 +42,7 @@ public class DefaultApplicationArgumentsTests {
...
@@ -42,7 +42,7 @@ public class DefaultApplicationArgumentsTests {
public
ExpectedException
thrown
=
ExpectedException
.
none
();
public
ExpectedException
thrown
=
ExpectedException
.
none
();
@Test
@Test
public
void
argumentsMustNoBeNull
()
throws
Exception
{
public
void
argumentsMustNo
t
BeNull
()
throws
Exception
{
this
.
thrown
.
expect
(
IllegalArgumentException
.
class
);
this
.
thrown
.
expect
(
IllegalArgumentException
.
class
);
this
.
thrown
.
expectMessage
(
"Args must not be null"
);
this
.
thrown
.
expectMessage
(
"Args must not be null"
);
new
DefaultApplicationArguments
(
null
);
new
DefaultApplicationArguments
(
null
);
...
...
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