Introducing Spring Shell 2.0M1!

Releases | Eric Bottard | September 18, 2017 | ...

We are pleased to announce the first release milestone of Spring Shell 2.x!

Two years in the making, Spring Shell 2 is a complete rewrite of Spring Shell, leveraging newer components (such as JLine 3) and applying better modularization. Spring Shell 2 is also built with Spring Boot in mind, making use of auto configuration and other boot features.

The internal architecture now uses a pluggable model to discover what methods to turn into commands, how to parse user input into argument values and how to handle return values. This is very similar to the approach taken by Spring MVC for example and allows extensions of the framework in ways that were not previously possible. Users of Spring Shell would typically not care though, only dealing with the new "standard" command API to define their commands.

Features Highlight

Some of the new features are highlighted in the video below (be sure to run it full screen), but here is a more extensive rundown:

  • A long requested feature, positional parameters are now supported (can even mix and match, to some extent)
  • Use of the standard Spring conversion API allows re-use of many existing converters, while Shell 1 had its own dedicated approach
  • Building on top of JLine 3 brings nice user experience enhancements, such as navigating among completion proposals using TAB
  • Integration with the bean validation API makes commands more expressive
  • The new help command is way more useful than it used to be, resembling the output of a man page
  • Commands parameters that accept a collection or an array value may now specify a non default arity
  • Another long requested feature, multi-line commands are now supported
  • Turning commands on and off is still supported, with a more natural programming model now as well as the ability to provide an explanation of why a command is currently unavailable

Let's See it in Action!

The short video below shows some of the features, using example commands that have the following signatures:

@ShellMethod("Add an item to the current order.")
public String addItem(
 	@ShellOption(help = "the item reference") String item,
 	@ShellOption(help = "unit price") @Min(0) float price,
 	@ShellOption(help = "the number of items to add", defaultValue = "1") @Range(min = 1, max = 15) int qty
 ) { ... }

@ShellMethod("Submit the order for processing.")
public List<?> submitOrder() { ... }

What's next

This is just the first milestone, full of new features. In the upcoming weeks, we plan on fixing a few bugs, finishing writing the comprehensive reference documentation and refactor a few internals, leading to a 2.0.0.RELEASE for Spring One Platform.

In the meantime, please try it out and provide feedback!

Special Thanks

I'd like to thank Florent Biville and Camilo Gonzalez who helped make this rewrite concrete by providing useful ideas and some of their valuable time!

Get the Spring newsletter

Thank you for your interest. Someone will get back to you shortly.

Get ahead

VMware offers training and certification to turbo-charge your progress.

Learn more

Get support

Tanzu Spring Runtime offers support and binaries for OpenJDK™, Spring, and Apache Tomcat® in one simple subscription.

Learn more

Upcoming events

Check out all the upcoming events in the Spring community.

View all