Skip to Main Content
Spring Boot 2.0 Cookbook - Second Edition
book

Spring Boot 2.0 Cookbook - Second Edition

by Alex Antonov
February 2018
Intermediate to advanced content levelIntermediate to advanced
286 pages
7h 20m
English
Packt Publishing
Content preview from Spring Boot 2.0 Cookbook - Second Edition

How to do it...

  1. The first step to getting SSHd Shell to work is to add the necessary dependency starters to our build.gradle file, as follows:
dependencies { 
    ... 
    compile("org.springframework.boot:spring-boot-starter-actuator") 
    compile("io.github.anand1st:sshd-shell-spring-boot-starter:3.2.1") 
    compile("de.codecentric:spring-boot-admin-starter-client:2.0.0-SNAPSHOT") 
    compile("org.jolokia:jolokia-core:+") 
    ... 
} 
  1. We also need to explicitly enable it by setting the following property in application.properties, located in the src/main/resources directory in the root of our project it needs to be enhanced with the following entries:
sshd.shell.enabled=true 
management.endpoint.shutdown.enabled=true
  1. Now, let's start our application by executing ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Spring 5.0 Cookbook

Spring 5.0 Cookbook

Sherwin John Calleja Tragura
Spring Boot 2.0 Projects

Spring Boot 2.0 Projects

Mohamed Shazin Sadakath
Java Hibernate Cookbook

Java Hibernate Cookbook

Yogesh Prajapati, Vishal Ranapariya

Publisher Resources

ISBN: 9781787129825Supplemental Content