Using Oracle JSON-Relational Duality Views with Spring Boot. The ORM Killer?

Development
en

Oracle Database 23ai introduced a powerful feature called JSON-Relational Duality Views. These views let you work with relational data in a document-oriented way. In this post,[...]

Fly.io and Neon: The Perfect Combination to Run Your Java Applications

Development
en

With the right tools, deploying and managing Java applications can be straightforward and efficient. This blog post will explore how Fly.io and Neon make a perfect combination for[...]

Spring boot, angular and JWT authentication

Development
en

In preparation for a potential customer project, I had to refresh my knowledge of Angular. The best way to do that is to create a small demo application. I used Angular 15 with[...]

Connect App Engine to Cloud SQL

Development
en

How to connect from an application running on Google Cloud App Engine to a PostgreSQL database running in Cloud SQL.

Deploy to Google Cloud App Engine with GitHub Actions

Development
en

In my previous post, I was explaining how to deploy to Google Cloud. The final missing part was to deploy it automatically with GitHub actions. The authentication will be done[...]

Deploy Vaadin App to Google Cloud App Engine with Java 17

Development
en

Today I tried to deploy a Vaadin application to Google Cloud App Engine It was not as straightforward as expected so I want to share my findings.

How to use jOOQ with Testcontainers, and Flyway

Development
en

When using a database the question is how to manage the versions of the schema and how to use the database in testing. Container technologies became a defacto standard. Why not[...]

Visualize Message Flow with Vaadin & Neo4j

Development
en

Analyzing and visualizing the message flow between business functions was the goal of my current project. At first, we considered using a UML tool for this job, but we came to the[...]

Vaadin and jOOQ – a Match Made in Heaven

Development
en

Have you ever had to write an application that didn’t do much other than display and change data? And did you use a Single Page Application framework like Angular, a REST API,[...]

Vaadin Lazy Loading Techniques

Development
en

When using grids, trees, or any other of the multi-valued component with Vaadin you often want to display data from a database table, and typically you have more than a few rows[...]

Type Safe SQL in Java with jOOQ

Development
en

No matter if you are using frameworks like JPA, MyBatis or Spring Data JDBC you always end up declaring the SQL statements as a Java String.

JPA Inheritance Strategies

Development
en

Relational databases have tables and columns and object-oriented programming languages have classes and fields but they also provide inheritance.

Go to Top