Tools of the Trade

A list of hardware, software, and services that I use day to day as a software engineer.

Read more…

How to use .env files with Spring Boot

Ideally you want to define property values in a single place and reuse them in your docker-compose.yml file and your Spring Boot application. This is where .env files come in handy. In this post we'll quickly walk through how to use .env files with Spring Boot.

Read more…

How to build a self-executable jar file

I'm always looking for ways to simplify the management of Java services. Recently, I've learned how to create a self-executing jar file without the need for an extra bash script.

Read more…