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.

Developer Experience with Spring Boot on Kubernetes by Thomas Vitale @ Spring I/O 2023

Leider ist der Eintrag nur auf English verfügbar. Read more

Schematic – A Database Management UI for Spring Boot

Leider ist der Eintrag nur auf English verfügbar.Out of my own need for an embedded database management tool for Spring Boot web applications, similar to the H2 Console, but for non-embedded databases, I've created Schematic - a database management UI for Spring Boot. Specifically, for the Workshops.DE Spring Boot course, some time ago we had decided to replace a development-time, embedded H2 database (and the console application that comes with it) with a more realistic (in that it brings our code closer ... Read more

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

Inheriting Properties for Lombok @Builders and JPA Entities

Leider ist der Eintrag nur auf English verfügbar.Lombok is one of those helpful developer tools for the Java language ecosystem that streamline (or even do away with entirely) the more tedious and mundane tasks in software development. Lombok in particular vastly reduces the boilerplate code Java developers have to write by providing annotations that have code for common structures and patterns such as constructors, getters and setters, and builders automatically generated. While tremendously helpful, sometimes edge cases can occur when working with ... Read more

Bootify: Rapid Prototyping for Spring Boot

Leider ist der Eintrag nur auf English verfügbar.Bootify is a rapid prototyping and code generation tool for Spring Boot that aims at improving developer experience for when getting started with a new Spring Boot application. While of course there is Spring Initializr, which serves a similar purpose, Bootify not just generates a minimal Spring Boot application with the desired dependencies but, on top of that and amongst other features, also adds database schema and model generation, REST API and CRUD capabilities, and ... Read more