February 2018
Intermediate to advanced
286 pages
7h 20m
English
The SSHd Shell integration with Spring Boot provides you with many commands out of the box. We can invoke the same management end points that were available to us over HTTP and JMX. We can get access to the JVM information, make changes to the logging configuration, and even interact with the JMX server and all the registered MBeans. The list of all the possibilities is really impressive and very rich in functionalities, so I would definitely advise you to read the reference documentation on SSHd Shell by going to https://github.com/anand1st/sshd-shell-spring-boot.
In Spring Boot, the expectation is that any class annotated with @SshdShellCommand will be automatically picked up and registered as an SSHd Shell command. The ...