Changes
Jump to navigation
Jump to search
← Older edit
Newer edit →
Java: Spring Boot
(edit)
Revision as of 14:25, 30 April 2022
563 bytes added
,
14:25, 30 April 2022
m
→Spring Boot Starter Projects
Line 55:
Line 55:
Secure your web application or REST API: Spring Boot Starter Security
Secure your web application or REST API: Spring Boot Starter Security
−
== Build ==
+
== Spring Boot Actuator ==
+
Monitor and manage your application
+
+
* beans: Complete list of Spring beans in your app
+
* health: Application health information
+
* metrics: Application metrics
+
* mappings: Details around Requests Mappings
+
+
To enable Spring Boot actuator at pom.xml:<syntaxhighlight lang="xml">
+
....
+
<dependencies>
+
....
+
<dependency>
+
<groupId>org.springframework.boot</groupId>
+
<artifactId>spring-boot-starter-actuator</artifactId>
+
</dependency>
+
....
+
</dependencies>
+
....
+
</syntaxhighlight>
+
+
+
==Build==
Make JAR not WAR (JAR contains embeded server)
Make JAR not WAR (JAR contains embeded server)
<br />
<br />
[[Category:Java]]
[[Category:Java]]
Rafahsolis
Bureaucrats
,
Administrators
2,306
edits
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
Variants
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
Special pages
Printable version