I'm using spring boot admin to monitor my springboot application, it's pretty good. But I need to start spring boot admin server firstly and then start my application which contains spring boot client.
Is there a way to contain the spring boot server into my spring boot application, make them looks like one application, so that I can just start my application, then the server started and the client registerd to the server. The ultimate purpose is my application is running on port 8080, and the spring boot admin is running on port 8081.
I have checked this thread: How to run spring boot admin client and server in same application but it doesn't contain any details, I can't implement with the possible solution.
PS: I know I can package the spring boot admin server, and then write the start.sh, startup the server firstly and then start my application, but it's not a pretty solution.
Anyone can help?
SpringBoot version: 2.3.4.RELEASE Spring Boot Admin version: 2.3.0
Technically this should be possible to integrate both in one single application, but I'm afraid you'll run into problems soon.
But let us give it a try...
Reference: Proof of concept GitHub
Problems with this approach:
client
on port8080
, and the admin-server on port8081
Let's start with the configuration
We could separate the multiple configurations by using a
profile
so we can take advantage of Profile Specific Filesapplication-client.properties
application-admin.properties
Launch the server, and the client with the correct profile.
DemoApplication
Launch the Application, and we should be good...
If you have two separate applications, then in your
client
you could launch theadmin-server
via a process.