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.

Build Faster Persistence Layers With Spring Data JPA 3 by Thorben Janssen @ Spring I/O 2024

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

Dynamic Projections with Spring Data JPA

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 interesting article on dynamic projections with Spring Data JPA. Dynamic projections allow you to determine the type returned by JPA query methods at invocation time, which comes in handy in case you want to return different attribute subsets from your data model for various use cases without having to incur the maintenance cost of creating a new query method ... Read more

Performance-Oriented Spring Data JPA & Hibernate by Maciej Walkowiak @ Voxxed Days Zürich 2024

Read more

Harnessing Amazon’s DynamoDB with Spring by Iuliana Cosmina @ Spring I/O 2022

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

“Paging with Spring Boot” by Tom Hombergs: A Guide to Paging and Pagination in Spring-based Web Applications

Leider ist der Eintrag nur auf English verfügbar.In his article Paging with Spring Boot software engineer Tom Hombergs (a former fellow student) provides an in-depth explanation of paging and pagination concepts and how to implement those in web applications with Spring Data and its Pageable interface. The article covers aspects such as sorting, usage with Spring Data repositories and testing. It's a useful reference for iteratively retrieving and displaying a larger amount of items from a database in a Spring Boot and ... Read more

JSON Schema to TypeScript declarations: Keeping Client and Server Models in Sync with Spring Data REST and Typescript

Leider ist der Eintrag nur auf English verfügbar.With web applications a separation between client and server is commonplace nowadays: While the server (also often called back-end) deals with the underlying model, data storage and the predominant part of the business logic, the user interface and user-facing behaviour in general is realised with JavaScript, HTML and CSS on the client (also referred to as front-end), i.e. the user's browser. Frequently, frameworks such as Angular are used in order to facilitate development and make ... Read more