Spring Boot Cloud CLI2017-10-24Spring Boot CLI provides Spring
Boot command line features for Spring
Cloud. You can write Groovy scripts to run Spring Cloud component
applications (e.g. @EnableEurekaServer). You can also easily do
things like encryption and decryption to support Spring Cloud Config
clients with secret configuration values. With the Launcher CLI you
can launch services like Eureka, Zipkin, Config Server
conveniently all at once from the command line (very useful at
development time).Spring Cloud is released under the non-restrictive Apache 2.0 license. If you would like to contribute to this section of the documentation or if you find an error, please find the source code and issue trackers in the project at github.InstallationTo install, make
sure you have
Spring Boot CLI
(1.5.2 or better):$ spring version
Spring CLI v1.5.4.RELEASEE.g. for SDKMan users$ sdk install springboot 1.5.4.RELEASE
$ sdk use springboot 1.5.4.RELEASEand install the Spring Cloud plugin$ mvn install
$ spring install org.springframework.cloud:spring-cloud-cli:1.4.0.RELEASEPrerequisites: to use the encryption and decryption features
you need the full-strength JCE installed in your JVM (it’s not there by default).
You can download the "Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files"
from Oracle, and follow instructions for installation (essentially replace the 2 policy files
in the JRE lib/security directory with the ones that you downloaded).Running Spring Cloud Services in DevelopmentThe Launcher CLI can be used to run common services like Eureka,
Config Server etc. from the command line. To list the available
services you can do spring cloud --list, and to launch a default set
of services just spring cloud. To choose the services to deploy,
just list them on the command line, e.g.$ spring cloud eureka configserver h2 kafka stubrunner zipkinSummary of supported deployables:ServiceNameAddressDescriptioneurekaEureka Serverhttp://localhost:8761Eureka server for service registration and discovery. All the other services show up in its catalog by default.configserverConfig Serverhttp://localhost:8888Spring Cloud Config Server running in the "native" profile and serving configuration from the local directory ./launcherh2H2 Databasehttp://localhost:9095 (console), jdbc:h2:tcp://localhost:9096/{data}Relation database service. Use a file path for {data} (e.g. ./target/test) when you connect. Remember that you can add ;MODE=MYSQL or ;MODE=POSTGRESQL to connect with compatibility to other server types.kafkaKafka Brokerhttp://localhost:9091 (actuator endpoints), localhost:9092hystrixdashboardHystrix Dashboardhttp://localhost:7979Any Spring Cloud app that declares Hystrix circuit breakers publishes metrics on /hystrix.stream. Type that address into the dashboard to visualize all the metrics,dataflowDataflow Serverhttp://localhost:9393Spring Cloud Dataflow server with UI at /admin-ui. Connect the Dataflow shell to target at root path.zipkinZipkin Serverhttp://localhost:9411Zipkin Server with UI for visualizing traces. Stores span data in memory and accepts them via HTTP POST of JSON data.stubrunnerStub Runner Boothttp://localhost:8750Downloads WireMock stubs, starts WireMock and feeds the started servers with stored stubs. Pass stubrunner.ids to pass stub coordinates and then go to http://localhost:8750/stubs.Each of these apps can be configured using a local YAML file with the same name (in the current
working directory or a subdirectory called "config" or in ~/.spring-cloud). E.g. in configserver.yml you might want to
do something like this to locate a local git repository for the backend:configserver.ymlspring:
profiles:
active: git
cloud:
config:
server:
git:
uri: file://${user.home}/dev/demo/config-repoE.g. in Stub Runner app you could fetch stubs from your local .m2 in the following way.stubrunner.ymlstubrunner:
workOffline: true
ids:
- com.example:beer-api-producer:+:9876Adding Additional ApplicationsAdditional applications can be added to ./config/cloud.yml (not
./config.yml because that would replace the defaults), e.g. withconfig/cloud.ymlspring:
cloud:
launcher:
deployables:
source:
coordinates: maven://com.example:source:0.0.1-SNAPSHOT
port: 7000
sink:
coordinates: maven://com.example:sink:0.0.1-SNAPSHOT
port: 7001when you list the apps:$ spring cloud --list
source sink configserver dataflow eureka h2 hystrixdashboard kafka stubrunner zipkin(notice the additional apps at the start of the list).Writing Groovy Scripts and Running ApplicationsSpring Cloud CLI has support for most of the Spring Cloud declarative
features, such as the @Enable* class of annotations. For example,
here is a fully functional Eureka serverapp.groovy@EnableEurekaServer
class Eureka {}which you can run from the command line like this$ spring run app.groovyTo include additional dependencies, often it suffices just to add the
appropriate feature-enabling annotation, e.g. @EnableConfigServer,
@EnableOAuth2Sso or @EnableEurekaClient. To manually include a
dependency you can use a @Grab with the special "Spring Boot" short
style artifact co-ordinates, i.e. with just the artifact ID (no need
for group or version information), e.g. to set up a client app to
listen on AMQP for management events from the Spring CLoud Bus:app.groovy@Grab('spring-cloud-starter-bus-amqp')
@RestController
class Service {
@RequestMapping('/')
def home() { [message: 'Hello'] }
}Encryption and DecryptionThe Spring Cloud CLI comes with an "encrypt" and a "decrypt"
command. Both accept arguments in the same form with a key specified
as a mandatory "--key", e.g.$ spring encrypt mysecret --key foo
682bc583f4641835fa2db009355293665d2647dade3375c0ee201de2a49f7bda
$ spring decrypt --key foo 682bc583f4641835fa2db009355293665d2647dade3375c0ee201de2a49f7bda
mysecretTo use a key in a file (e.g. an RSA public key for encyption) prepend
the key value with "@" and provide the file path, e.g.$ spring encrypt mysecret --key @${HOME}/.ssh/id_rsa.pub
AQAjPgt3eFZQXwt8tsHAVv/QHiY5sI2dRcR+...