Spring Boot Integration Testing with Embedded MongoDB 1. Overview In this tutorial, we’ll learn how to use Flapdoodle’s embedded MongoDB solution together with Spring Boot to run MongoDB integration tests smoothly. MongoDB is a popular NoSQL document database. Thanks to the high scalability, built-in sharding and excellent community support it’s… Continue Reading spring-boot-embedded-mongodb

Introduction to SPNEGO/Kerberos Authentication in Spring 1. Overview In this tutorial, we’ll understand the basics of the Kerberos authentication protocol. We’ll also cover the need for SPNEGO in connection with Kerberos. Finally, we’ll see how to make use of the Spring Security Kerberos extension to create applications enabled for Kerberos… Continue Reading spring-security-kerberos

Spring Boot Annotations 1. Overview Spring Boot made configuring Spring easier with its auto-configuration feature. In this quick tutorial, we’ll explore the annotations from the org.springframework.boot.autoconfigure and org.springframework.boot.autoconfigure.condition packages. 2. @SpringBootApplication We use this annotation to mark the main class of a Spring Boot application: @SpringBootApplication class VehicleFactoryApplication { public… Continue Reading spring-boot-annotations