Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install Spring Boot CLI in Ubuntu?

I am trying to install Spring Boot CLI in Ubuntu. I am new to spring boot and was trying to learn it. I have already installed Gradle and groovy but did not find anything online to install Spring boot CLI.

like image 493
BadAssDisplayName Avatar asked Apr 18 '18 01:04

BadAssDisplayName


3 Answers

please follow the code

sudo apt install unzip zip
curl -s https://get.sdkman.io | bash
source "/home/username/.sdkman/bin/sdkman-init.sh"=
sdk install springboot
spring version
like image 194
Paul Cheriyan Avatar answered Sep 30 '22 06:09

Paul Cheriyan


The Spring boot CLI install guide link Spring boot CLI

like image 20
buddha Avatar answered Sep 30 '22 08:09

buddha


Here is detailed instruction on how to do it, much more useful than official one, at least for manual installation. One more thing - to make path change permanent you might need to logout - login, as "source /etc/profile" will be effective only for currently opened terminal.

like image 43
Nenad Bulatović Avatar answered Sep 30 '22 07:09

Nenad Bulatović