chao huang
chao huang

Reputation: 3

how to installing spring boot application on Mac

Spring boot application can be easily started as Linux services using either init.d or systemd. Then we can use stop|start|status|restart commands to manage our service. Is there any similar way to manage spring boot application as service on Mac OS X?

Upvotes: 1

Views: 2195

Answers (1)

jsd
jsd

Reputation: 7703

The macOS equivalent is launchd/launchctl. There's a very detailed tutorial at http://launchd.info

Upvotes: 1

Related Questions