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 […]
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 […]
1. Introduction In this quick article, we’ll take a look at the new @SpringJUnitConfig and @SpringJUnitWebConfig annotations available in Spring 5. These annotations are a composition of JUnit 5 […]
1. Introduction In this quick article, we’ll take a look at the new @SpringJUnitConfig and @SpringJUnitWebConfig annotations available in Spring 5. These annotations are a composition of JUnit 5 […]
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 […]
1. Overview Spring 4.3. introduced some very cool method-level composed annotations to smooth out the handling @RequestMapping in typical Spring MVC projects. In this article, we will learn how […]
1. Introduction In this quick tutorial, we provide a concise overview of the Spring @RequestBody and @ResponseBody annotations. 2. @RequestBody Simply put, the @RequestBody annotation maps the HttpRequest body to a transfer or domain object, […]
1. Overview In this brief tutorial, we’ll discuss the difference between @Controller and @RestController annotations in Spring MVC. We can use the first annotation for traditional Spring controllers, and […]
1. Overview In this tutorial, we’ll explore Spring Web annotations from the org.springframework.web.bind.annotation package. 2. @RequestMapping Simply put, @RequestMapping marks request handler methods inside @Controller classes; it can be configured using: path, or its […]
1. Overview In this tutorial we’ll explore some of the core features of Spring Data MongoDB – indexing, common annotations and converters. 2. Indexes 2.1. @Indexed […]