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
1235d8f8
Commit
1235d8f8
authored
Nov 24, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish Actuator doc
Closes gh-10861
parent
e92d248f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
14 deletions
+3
-14
howto.adoc
...oot-project/spring-boot-docs/src/main/asciidoc/howto.adoc
+0
-13
production-ready-features.adoc
...oot-docs/src/main/asciidoc/production-ready-features.adoc
+3
-1
No files found.
spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc
View file @
1235d8f8
...
@@ -2242,19 +2242,6 @@ of how to register handlers in the servlet container.
...
@@ -2242,19 +2242,6 @@ of how to register handlers in the servlet container.
[[howto-use-actuator-with-jersey]]
=== Actuator and Jersey
Actuator HTTP endpoints are available only for Spring MVC-based applications. If you want
to use Jersey and still use the actuator, you need to enable Spring MVC (by depending
on `spring-boot-starter-web`, for example). By default, both Jersey and the Spring MVC
dispatcher servlet are mapped to the same path (`/`). You need to change the path for
one of them (by configuring `server.servlet.path` for Spring MVC or
`spring.jersey.application-path` for Jersey). For example, if you add
`server.servlet.path=/system` into `application.properties`, the actuator HTTP endpoints
are available under `/system`.
[[howto-security]]
[[howto-security]]
== Security
== Security
...
...
spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
View file @
1235d8f8
...
@@ -660,11 +660,13 @@ additional entry:
...
@@ -660,11 +660,13 @@ additional entry:
[[production-ready-monitoring]]
[[production-ready-monitoring]]
== Monitoring and Management over HTTP
== Monitoring and Management over HTTP
If you are developing a
Spring MVC
application, Spring Boot Actuator auto-configures all
If you are developing a
web
application, Spring Boot Actuator auto-configures all
enabled endpoints to be exposed over HTTP. The default convention is to use the `id` of
enabled endpoints to be exposed over HTTP. The default convention is to use the `id` of
the endpoint with a prefix of `/actuator` as the URL path. For example, `health` is
the endpoint with a prefix of `/actuator` as the URL path. For example, `health` is
exposed as `/actuator/health`.
exposed as `/actuator/health`.
TIP: Actuator is supported natively with Spring MVC, Spring WebFlux and Jersey.
[[production-ready-customizing-management-server-context-path]]
[[production-ready-customizing-management-server-context-path]]
...
...
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