Spring
-
Enterprise Java
Spring Web MVC
Spring MVC is a web framework based on the model–view–controller pattern. It is based on the Spring principles and supports…
Read More » -
Enterprise Java
Deploying a Quarkus or any Java based microservice behind an Nginx reverse proxy with SSL using docker
It has been a while but as per a friend requested I am going to show you how to deploy…
Read More » -
Enterprise Java
Code Generation in CUBA: What makes the magic
Introduction Code generation is a common thing in modern frameworks. There may be different reasons behind introducing code generation –…
Read More » -
Enterprise Java
Improving Spring Mock-MVC tests
Spring Mock-MVC can be a great way to test Spring Boot REST APIs. Mock-MVC allows us to test Spring-MVC request…
Read More » -
Enterprise Java
For gourmets and practioners: pick your flavour of the reactive stack with JAX-RS and Apache CXF
When JAX-RS 2.1 specification was released back in 2017, one of its true novelties was the introduction of the reactive…
Read More » -
Enterprise Java
Reduce Repetitive Code in Spring MVC Controllers
After spending some time doing sustained engineering (a.k.a. maintaining legacy code), I ventured to reduce repetitive code in Spring MVC…
Read More » -
Enterprise Java
Quick tip: Referencing other Properties in Spring
In Spring property (or yaml) files we can reference other properties using the ${..} syntax. For example: 1 2 3…
Read More » -
Enterprise Java
What is Bean scope in Spring MVC framework with Example
Bean scope in Spring framework or Spring MVC is scope for a bean managed by Spring IOC container. You may…
Read More » -
Enterprise Java
Integrating JSON Schema validation in Spring using a custom HandlerMethodArgumentResolver
In previous posts we learned about JSON Schema and how we can validate a JSON document against a JSON Schema…
Read More »