Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
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
openSource
spring-boot-admin
Commits
d8775abd
Commit
d8775abd
authored
Dec 19, 2014
by
tobiasflohre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#32 #31
server.context-path not used when application registers itself #32 Typo in About #31
parent
2b8bc3fb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
about.html
...boot-admin-server/src/main/webapp/public/views/about.html
+1
-1
overview.html
...t-admin-server/src/main/webapp/public/views/overview.html
+1
-1
AdminClientProperties.java
.../codecentric/boot/admin/config/AdminClientProperties.java
+1
-1
No files found.
spring-boot-admin-server/src/main/webapp/public/views/about.html
View file @
d8775abd
<div
class=
"container"
>
<div
class=
"main-template"
>
This is an administration GUI for Spring-Boot applications. All applications ha
s to register itself
at this application.
This is an administration GUI for Spring-Boot applications. All applications ha
ve to register themselves
at this application.
This is done by including
<a
href=
""
>
spring-boot-starters-admin-client
</a>
as dependency. This will
auto-configure a registrator that registers the application.
</div>
...
...
spring-boot-admin-server/src/main/webapp/public/views/overview.html
View file @
d8775abd
<h2
>
Spring-Boot applications
<br>
<small>
Here you'll find all Spring-Boot applications that registered
itself
at this admin application.
</small>
<small>
Here you'll find all Spring-Boot applications that registered
themselves
at this admin application.
</small>
</h2>
<table
class=
"table table-striped"
>
<thead>
...
...
spring-boot-starter-admin-client/src/main/java/de/codecentric/boot/admin/config/AdminClientProperties.java
View file @
d8775abd
...
...
@@ -21,7 +21,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties
(
prefix
=
"spring.boot.admin.client"
,
ignoreUnknownFields
=
false
)
public
class
AdminClientProperties
{
@Value
(
"http://#{T(java.net.InetAddress).localHost.canonicalHostName}:${management.port:${server.port:8080}}${server.context
P
ath:/}${management.context-path:/}"
)
@Value
(
"http://#{T(java.net.InetAddress).localHost.canonicalHostName}:${management.port:${server.port:8080}}${server.context
-p
ath:/}${management.context-path:/}"
)
private
String
url
;
@Value
(
"${spring.application.name:spring-boot-application}"
)
...
...
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