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
ac14072d
Commit
ac14072d
authored
Jun 15, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo in documentation
See gh-3232
parent
b7742a72
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
using-spring-boot.adoc
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
+4
-4
No files found.
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
View file @
ac14072d
...
@@ -909,11 +909,11 @@ the following:
...
@@ -909,11 +909,11 @@ the following:
=== Remote applications
=== Remote applications
The Spring Boot developer tools are not just limited to local development. You can also
The Spring Boot developer tools are not just limited to local development. You can also
use several features when running applications remotely. Remote support is opt-in, to
use several features when running applications remotely. Remote support is opt-in, to
enable it you need to set a `spring.devtools.remote.
password
` property. For example:
enable it you need to set a `spring.devtools.remote.
secret
` property. For example:
[source,properties,indent=0]
[source,properties,indent=0]
----
----
spring.devtools.remote.
password
=mysecret
spring.devtools.remote.
secret
=mysecret
----
----
WARNING: Enabling `spring-boot-devtools` on a remote application is a security risk. You
WARNING: Enabling `spring-boot-devtools` on a remote application is a security risk. You
...
@@ -921,7 +921,7 @@ should never enable support on a production deployment.
...
@@ -921,7 +921,7 @@ should never enable support on a production deployment.
Remote devtools support is provided in two parts; there is a server side endpoint that
Remote devtools support is provided in two parts; there is a server side endpoint that
accepts connections, and a client application that you run in your IDE. The server
accepts connections, and a client application that you run in your IDE. The server
component is automatically enabled when the `spring.devtools.remote.
password
` property
component is automatically enabled when the `spring.devtools.remote.
secret
` property
is set. The client component must be launched manually.
is set. The client component must be launched manually.
...
@@ -962,7 +962,7 @@ A running remote client will look like this:
...
@@ -962,7 +962,7 @@ A running remote client will look like this:
----
----
NOTE: Because the remote client is using the same classpath as the real application it
NOTE: Because the remote client is using the same classpath as the real application it
can directly read application properties. This is how the `spring.devtools.remote.
password
`
can directly read application properties. This is how the `spring.devtools.remote.
secret
`
property is read and passed to the server for authentication.
property is read and passed to the server for authentication.
TIP: It's always advisable to use `https://` as the connection protocol so that traffic is
TIP: It's always advisable to use `https://` as the connection protocol so that traffic is
...
...
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