my blog. for you.

Reden wir über Digitales.

Ich bin selbständiger IT Berater und Unternehmer in der Internet und Software Branche. Ich beschäftige mich mit Design, Enterprise Applikationen, Web Apps und SaaS Produkten. Ich entwerfe und entwickle Business Lösungen und Anwendungen. Ich helfe Unternehmen in Sachen Software Qualität und Wissenstransfer, z.B. mit Angular und Spring Boot.

Just – A Command Line Toolkit for Spring Boot Applications

Leider ist der Eintrag nur auf English verfügbar.In December last year, freelance software consultant Maciej Walkowiak, who also is the lead developer of Spring Cloud AWS, released just, a command-line toolkit for developing Spring Boot applications. I've been using just since then and I'm extremely happy with this tool and how it has improved my development experience with Spring Boot. Although Spring Boot already provides a more than decent developer experience - especially when it comes to getting up and running quickly and ... Read more

Faster Maven Builds With mvnd – A Maven Daemon

Leider ist der Eintrag nur auf English verfügbar.Maven is a popular build tool for Java projects. It allows developers to easily manage dependencies, build and test their code, and package it for distribution. However, one downside of Maven is that it can be slow to start up, especially on large projects. This is where the Maven Daemon, or mvnd, comes in. mvnd is a tool that allows Maven to run in the background as a daemon process, rather than as a one-off ... Read more

How to publish a Java library to Maven Central – A Complete Guide By Maciej Walkowiak

Leider ist der Eintrag nur auf English verfügbar.Freelance software consultant Maciej Walkowiak (of Just and Spring Cloud AWS fame) has recently published this highly useful guide on "How to publish a Java library to Maven Central". While Maven and its main repository Maven Central certainly is a reliable, safe tool with the requisite infrastructure for managing dependencies for Java software projects, it isn't quite as easy to publish new Maven dependencies as it is for example to publish new npm packages. There's a ... Read more

Revisiting Popular Posts: Spring Batch Resources & Maven Failsafe With Spring Boot

Leider ist der Eintrag nur auf English verfügbar.Two of the most popular posts on this blog cover resources for Spring Batch and how to use Maven Failsafe with Spring Boot: Spring Batch Resources: Batch Processing, ETL And Data Conversion Using Maven Failsafe With Spring Boot While doing some regular blog housekeeping, I recently revised those articles and fixed a few broken links. If you're interested in these technologies and frameworks, you might want to check those articles out. Read more

Using Maven Failsafe With Spring Boot

Leider ist der Eintrag nur auf English verfügbar.Maven Failsafe is a Maven plugin designed to be used in conjunction with the Maven Surefire Plugin. While the former plugin is intended for running integration tests the latter's purpose is to run unit tests. These plugins are tremendously useful for partitioning tests in Maven-based Java applications in order to make tests and builds run faster. When recently using Maven Failsafe with a Spring Boot application, though, I encountered a somewhat gnarly problem. Running mvn verify ... Read more