AI Text Classification with Java, Spring AI and LLMs This article will explain the main aspects of a text classification system and describe how to implement it with Java and Spring AI while leveraging the power of large language models (LLMs).
Spring Podman Desktop for Java Development Install Podman Desktop for managing containers and learn how to use it for Java development (Spring Boot, Quarkus, Testcontainers, Buildpacks).
Spring Spring Native: Getting started with GraalVM native images The Spring Native project provides support for packaging Spring applications as native images using GraalVM, with fast startup times and optimized memory usage.
Spring New Book: Cloud Native Spring in Action - With Spring Boot and Kubernetes I’m thrilled to announce that my book is available in early access. Learn cloud native development with Spring Boot, Spring Cloud, Docker and Kubernetes.
Spring Centralized Configuration with Spring Cloud Config Learn how to build a central config server with Spring Cloud Config, configure a Spring Boot application with it, and refresh the config at runtime.
Keycloak Spring Security and Keycloak to Secure a Spring Boot Application - A First Look Keycloak is a solution for identity and access management. In this article, we're going to secure a Spring Boot application using Spring Security and Keycloak.
Keycloak Securing a Spring Boot Application with Keycloak - A First Look Learn how to: set up a Spring Boot application for a public library, define the application resources, add access policies based on user roles. We're going to use OAuth 2.0 and OpenID Connect, specifically the standard Authorization Code Flow.
Spring How to enable HTTPS in a Spring Boot Java application Setting up HTTPS for Spring Boot requires two steps: getting an SSL certificate and configuring SSL in Spring Boot. Whether you're going to generate a self-signed certificate or you have already got one by a CA, I'll show you how to enable HTTPS in a Spring Boot application.
Spring Spring Data JPA using Hibernate and Java Configuration with Annotations Spring Data JPA makes it very easy to implement JPA-based repositories. In this tutorial, I’ll show you how to use it to integrate a relational database (PostgreSQL in my example) with a Spring Boot application.
Spring Getting Started with Spring Data MongoDB using Java Configuration In this tutorial, I'll show you how to use Spring Data MongoDB to integrate a MongoDB NoSQL database into a Spring Boot application. Spring lets you use either Java configuration or XML configuration or a mix of the two. I'll use a pure Java configuration.