All posts in 'Java'

Revised Actuators in Spring Boot 2

13-Feb-18

This post has been featured on This Week in Spring – February 20th, 2018 and I’m feel honored to be referred as “Spring community legend” but even more so to be listed next to a lot of people who’s work I use on a daily basis. Thanks, Josh. Tim from Ordina posted a nice blog […]

Read the complete article »

November recap and Java quickies

01-Dec-17

November has been a crazy month. Even though I joined Ralf in his Movember team and grew a mustache, I visited the JUG Münster at LVM Münster and gave my talk about SQL once again in a slightly updated version: It felt very good being part of innoQ on this occasion. Also very nice was […]

Read the complete article »

Wildly unused helper: EnumSet

22-Nov-17

Available since Java 1.5 is the nice helper class EnumSet and I still find code like this way to often: public class Foo { enum Thing { A, B, C }   public static final Set<Thing> THINGS = new HashSet<>(); static { THINGS.add(Thing.A); THINGS.add(Thing.B); THINGS.add(Thing.C); } }public class Foo { enum Thing { A, B, […]

Read the complete article »

Integration testing with Docker-Compose, Gradle and Spring Boot

20-Nov-17

This post has been featured on This Week in Spring – November 28th, 2017. Lately I have been preparing a small project called simple-meetup that I plan to use for different purposes. You’ll find the repository at GitHub: github.com/michael-simons/simple-meetup. It’s the first project where I used Gradle very intensive and I like my build file […]

Read the complete article »

Past summer: October wrap-up

28-Oct-17

This year, time flies. Writing this post at about 7pm, it’s already dark. October had some brilliant moments regarding weather and I enjoyed the golden autumn very much. As announced last month, I send the “final” manuscript of Spring Boot Buch to dpunkt.verlag in the last week of September. 2 weeks later, I received three […]

Read the complete article »