Scripting with JBang instead of Python

development  

I recently needed to write some scripts to automate some updates to Microservices.IO. I normally write scripts in Python (or perhaps bash, if they simple) since it’s easy to use and has lots of handy libraries. But this time I decided to try JBang, which is a tool that let’s you write scripts in Java.

Installing JBang

First, I installed JBang using SDKMAN!:

$ sdk install jbang

Creating a JBang script

Second, I created the script:

$ jbang init Example.java

This command creates the executable file Example.java.

$ ./Example.java
[jbang] Building jar...
Hello World

Here are the contents:

///usr/bin/env jbang "$0" "$@" ; exit $?


import static java.lang.System.*;

public class Example {

    public static void main(String... args) {
        out.println("Hello World");
    }
}

Editing a JBang script in your IDE

Next, I then edited this script in IntelliJ IDEA:

$ jbang edit --open=idea Example.java

This command creates IntelliJ IDEA project that has a symbolic link to Example.java.

Adding dependencies

The scripts, which process Markdown files, mainly used classes from java.nio.file.* and java.util.regex.*. However, one script generated Markdown files using Thymeleaf templates. It was remarkably easy to add the Thymeleaf dependency using the DEPS directive:

///usr/bin/env jbang "$0" "$@" ; exit $?

//DEPS org.thymeleaf:thymeleaf:3.1.1.RELEASE

After rerunning, jbang edit to update the IntelliJ IDEA project, I could write the Thymeleaf code.

Summary

JBang makes it easy to write scripts using Java, which is statically typed and has sophisticated IDEs. But before feeling entirely comfortable with using JBang instead of Python, there are a couple of things I to do:

  1. Investigate how to edit JBang scripts that consist of multiple files - so far I’ve the scripts have inner classes, which are not reusable.

  2. Track down and evaluate the Java equivalents of Python libraries such as colorama, GitPython, argparse.


development  


Copyright © 2024 Chris Richardson • All rights reserved • Supported by Kong.

About Microservices.io

Microservices.io is brought to you by Chris Richardson. Experienced software architect, author of POJOs in Action, the creator of the original CloudFoundry.com, and the author of Microservices patterns.

New workshop: Architecting for fast, sustainable flow

Enabling DevOps and Team Topologies thru architecture

DevOps and Team topologies are vital for delivering the fast flow of changes that modern businesses need.

But they are insufficient. You also need an application architecture that supports fast, sustainable flow.

Learn more and register for my June 2024 online workshops....

NEED HELP?

I help organizations improve agility and competitiveness through better software architecture.

Learn more about my consulting engagements, and training workshops.

LEARN about microservices

Chris offers numerous other resources for learning the microservice architecture.

Get the book: Microservices Patterns

Read Chris Richardson's book:

Example microservices applications

Want to see an example? Check out Chris Richardson's example applications. See code

Virtual bootcamp: Distributed data patterns in a microservice architecture

My virtual bootcamp, distributed data patterns in a microservice architecture, is now open for enrollment!

It covers the key distributed data management patterns including Saga, API Composition, and CQRS.

It consists of video lectures, code labs, and a weekly ask-me-anything video conference repeated in multiple timezones.

The regular price is $395/person but use coupon ILFJODYS to sign up for $95 (valid until April 12, 2024). There are deeper discounts for buying multiple seats.

Learn more

Learn how to create a service template and microservice chassis

Take a look at my Manning LiveProject that teaches you how to develop a service template and microservice chassis.

Signup for the newsletter


BUILD microservices

Ready to start using the microservice architecture?

Consulting services

Engage Chris to create a microservices adoption roadmap and help you define your microservice architecture,


The Eventuate platform

Use the Eventuate.io platform to tackle distributed data management challenges in your microservices architecture.

Eventuate is Chris's latest startup. It makes it easy to use the Saga pattern to manage transactions and the CQRS pattern to implement queries.


Join the microservices google group