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
1da9e4d8
Commit
1da9e4d8
authored
Apr 18, 2016
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.3.x'
parents
6d4083a7
432969e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
production-ready-features.adoc
...oot-docs/src/main/asciidoc/production-ready-features.adoc
+7
-7
No files found.
spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
View file @
1da9e4d8
...
...
@@ -236,13 +236,13 @@ HTTP (if there is an server available). An HTTP endpoints can be customized furt
creating
a
bean
of
type
`
MvcEndpoint
`.
Your
`
MvcEndpoint
`
is
not
a
`@
Controller
`
but
it
can
use
`@
RequestMapping
`
(
and
`@
Managed
*`)
to
expose
resources
.
TIP
:
If
you
are
doing
this
as
a
library
feature
consider
adding
a
configuration
class
to
`/
META
-
INF
/
spring
.
factories
`
under
the
key
`
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
EndpointWebMvcConfiguration
`.
If
you
do
that
then
the
endpoint
will
move
to
a
child
context
with
all
the
other
MVC
endpoints
if
your
users
ask
for
a
separate
management
port
or
address
.
A
configuration
declared
this
way
can
be
a
`
WebConfigurerAdapter
`
if
it
wants
to
add
static
resources
(
for
instance
)
to
the
management
endpoints
.
TIP
:
If
you
are
doing
this
as
a
library
feature
consider
adding
a
configuration
class
annoated
with
`@
ManagementContextConfiguration
`
to
`/
META
-
INF
/
spring
.
factories
`
under
the
key
`
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
ManagementContextConfiguration
`.
If
you
do
that
then
the
endpoint
will
move
to
a
child
context
with
all
the
other
MVC
endpoints
if
your
users
ask
for
a
separate
management
port
or
address
.
A
configuration
declared
this
way
can
be
a
`
WebConfigurerAdapter
`
if
it
wants
to
add
static
resources
(
for
instance
)
to
the
management
endpoints
.
...
...
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