Browse by topic on the categories page.
-
API Generation in the Build Pipeline
The below article was based on a configuration I had to do in an application which I’ve worked. After some problems of a library (jackson) conflicting between the container version and Swagger dependency, a different approach was thought. Pre requirements Knowledge of REST webservices Basic knowledge of Swagger Overview Swagger ... Read More
-
From Java EE to Spring Boot
This article is based on notes took in a a migration of a Java EE (EJB + JSF) application to Spring. It approaches an overview of Spring Boot aspects and established a small comparison with Java EE. Overview Spring Boot Spring World Spring is a well-known framework for most part of Java developers. It has several components, which inc... Read More
-
Unit tests for Bean Validation
Sometimes you need to test something which uses Bean Validation. For instance, you are using JPA and your entities use Bean Validation. In this case, if you have any implementation of jsr-303 (like hibernate validation), it will run automatically on JPA calls. In the above case, the test can throw javax.validation.ConstraintViolationException. ... Read More