Guide to EJB Set-up 1. Overview In this article, we’re going to discuss how to get started with Enterprise JavaBean (EJB) development. Enterprise JavaBeans are used for developing scalable, distributed, server-side components and typically encapsulate the business logic of the application. We’ll use WildFly 10.1.0 as our preferred server solution,… Continue Reading ejb-intro

More Jackson Annotations 1. Overview This article covers some additional annotations that were not covered in the previous article, A Guide to Jackson Annotations – we will go through seven of these. 2. @JsonIdentityReference @JsonIdentityReference is used for customization of references to objects that will be serialized as object identities… Continue Reading jackson-advanced-annotations

Spring Bean Annotations 1. Overview In this article, we’ll discuss the most common Spring bean annotations used to define different types of beans. There’re several ways to configure beans in a Spring container. We can declare them using XML configuration. We can declare beans using the @Bean annotation in a… Continue Reading spring-bean-annotations

Configure a Spring Boot Web Application 1. Overview Spring Boot can do a lot of things; in this tutorial, we’re going to go over a few of the more interesting configuration options in Boot. Further reading: Migrating from Spring to Spring Boot See how to properly migrate from a Spring… Continue Reading spring-boot-application-configuration