Enterprise Java
-
Building a RESTFul Service using Spring Boot
Everyone is talking about Microservices such as WSO2 Microservice Framework, Spring Boot, etc. Since I haven’t worked on any Spring related project…
Read More » -
Understanding OAuth2 token authentication
1. Introduction In this tutorial, we will be understanding OAuth2 Token Authentication, such that only authenticated users and applications get a…
Read More » -
The Apache Ignite Native persistence, a brief overview
In-memory approaches can achieve blazing speed by putting the working set of the data into the system memory. When all…
Read More » -
Spring Webflux – Kotlin DSL – a walkthrough of the implementation
In a previous blog post I had described how Spring Webflux, the reactive programming support in Spring Web Framework, uses a…
Read More » -
What is JavaServer Faces (JSF) – (Part 2)
Facelets Declaration Language In part 1 I introduced the basic idea behind JavaServer Pages (JSF). In this article, I would…
Read More » -
What is JavaServer Faces (JSF)
This is a two-part series in which I look at JSF 2 and how it fits into the Java EE…
Read More » -
What are JAX-RS Annotations? (Part 3)
Overview of JAX-RS Annotations (Part 3) This is a three-part series looking at the annotation that is used to implement REST…
Read More » -
Difference between @RestController and @Controller Annotation in Spring MVC and REST
The @RestController annotation in Spring MVC is nothing but a combination of the @Controller and the @ResponseBody annotation. It was…
Read More » -
What does the InternalResourceViewResolver do in Spring MVC?
The InternalResourceViewResolver is an implementation of ViewResolver in Spring MVC framework which resolves logical view name e.g. "hello" to internal…
Read More »