@@ -41,9 +41,116 @@ <h1>Test</h1>
41
41
Welcome to the Spring Boot Thymeleaf Application!
42
42
</ p >
43
43
< p >
44
- < a href ="# " class ="btn btn-large btn-success "> Sign up </ a >
44
+ < a href ="# " th:href =" @{properties} " class ="btn btn-large btn-success "> System Properties </ a >
45
45
</ p >
46
46
</ div >
47
+ < div >
48
+ < h1 > Spring Actuator</ h1 >
49
+ < p >
50
+ Actuator endpoints allow you to monitor and interact with your application.
51
+ Spring Boot includes a number of built-in endpoints and you can also add your own.
52
+ </ p >
53
+ < table >
54
+ < thead >
55
+ < tr >
56
+ < th > ID</ th >
57
+ < th > Description</ th >
58
+ </ tr >
59
+ </ thead >
60
+ < tbody >
61
+ < tr >
62
+ < td >
63
+ < p > < a href ="# " th:href ="@{autoconfig} "> autoconfig</ a > </ p >
64
+ </ td >
65
+ < td >
66
+ < p > Displays an auto-configuration report showing all auto-configuration candidates and the
67
+ reason why they “were” or “were not” applied.</ p >
68
+ </ td >
69
+ </ tr >
70
+ < tr >
71
+ < td >
72
+ < p > < a href ="# " th:href ="@{beans} "> beans</ a > </ p >
73
+ </ td >
74
+ < td >
75
+ < p > Displays a complete list of all the Spring Beans in your application</ p >
76
+ </ td >
77
+ </ tr >
78
+ < tr >
79
+ < td >
80
+ < p > < a href ="# " th:href ="@{configprops} "> configprops</ a > </ p >
81
+ </ td >
82
+ < td >
83
+ < p > Displays a collated list of all < code class ="literal "> @ConfigurationProperties</ code > .</ p >
84
+ </ td >
85
+ </ tr >
86
+ < tr >
87
+ < td >
88
+ < p > < a href ="# " th:href ="@{dump} "> dump</ a > </ p >
89
+ </ td >
90
+ < td >
91
+ < p > Performs a thread dump.</ p >
92
+ </ td >
93
+ </ tr >
94
+ < tr >
95
+ < td >
96
+ < p > < a href ="# " th:href ="@{env} "> env</ a > </ p >
97
+ </ td >
98
+ < td >
99
+ < p > Exposes properties from Spring’s < code class ="literal "> ConfigurableEnvironment</ code > .</ p >
100
+ </ td >
101
+ </ tr >
102
+ < tr >
103
+ < td >
104
+ < p > < a href ="# " th:href ="@{health} "> health</ a > </ p >
105
+ </ td >
106
+ < td >
107
+ < p > Shows application health information (defaulting to a simple “OK” message).</ p >
108
+ </ td >
109
+ </ tr >
110
+ < tr >
111
+ < td >
112
+ < p > < a href ="# " th:href ="@{info} "> info</ a > </ p >
113
+ </ td >
114
+ < td >
115
+ < p > Displays arbitrary application info.</ p >
116
+ </ td >
117
+ </ tr >
118
+ < tr >
119
+ < td >
120
+ < p > < a href ="# " th:href ="@{metrics} "> metrics</ a > </ p >
121
+ </ td >
122
+ < td >
123
+ < p > Shows “metrics” information for the current application.</ p >
124
+ </ td >
125
+ </ tr >
126
+ < tr >
127
+ < td >
128
+ < p > < a href ="# " th:href ="@{mappings} "> mappings</ a > </ p >
129
+ </ td >
130
+ < td >
131
+ < p > Displays a collated list of all < code class ="literal "> @RequestMapping</ code > paths.</ p >
132
+ </ td >
133
+ </ tr >
134
+ < tr >
135
+ < td >
136
+ < p > < a href ="# " th:href ="@{shutdown} "> shutdown</ a > </ p >
137
+ </ td >
138
+ < td >
139
+ < p > Allows the application to be gracefully shutdown (not enabled by default).</ p >
140
+ </ td >
141
+ </ tr >
142
+ < tr >
143
+ < td >
144
+ < p > < a href ="# " th:href ="@{trace} "> trace</ a > </ p >
145
+ </ td >
146
+ < td >
147
+ < p > Displays trace information (by
148
+ default the last few HTTP requests).</ p >
149
+ </ td >
150
+ </ tr >
151
+ </ tbody >
152
+ </ table >
153
+ </ div >
47
154
< div th:replace ="fragments/footer :: footer "> © 2014 The Static Templates</ div >
48
155
</ div >
49
156
</ body >
0 commit comments