Enterprise Java
-
Spring Boot YAML Configuration
In this quick tutorial, we’ll learn how to use a YAML file to configure properties of a Spring Boot application.…
Read More » -
Data Modeling in Cassandra
In Relational Data Models, we model relation/table for every object in the domain. In case of Cassandra, this is not…
Read More » -
Jakarta EE without javax: the world won’t end this time either
If you missed the news, Oracle is donating the Java EE specification to the Eclipse foundation. This decisions has followed…
Read More » -
Spring ClassPathXmlApplicationContext
Introduction: Spring provides two types of containers: BeanFactory: It supports bean instantiating and wiring ApplicationContext: It extends the BeanFactory and…
Read More » -
Angular 8 + Spring Boot 2.2: Build a CRUD App Today!
“I love writing authentication and authorization code.” ~ No Java Developer Ever. Tired of building the same login screens over…
Read More » -
Spring MVC Annotations
Introduction: Spring 2.5 onwards, we can use annotations to mark our Spring components. One way of doing so is to…
Read More » -
Spring Dependency Injection
Introduction: In a well-designed Java application, the classes should be as independent as possible. Such a design promotes reusability of…
Read More » -
Spring Boot Exit Codes – Create Custom Exit Code
When running a Spring Boot application, we get a system exit code of 0, when everything goes fine. For any…
Read More » -
Using @ResponseStatus for Http Status in Spring
Introduction: In Spring MVC, we can set the status of the HttpResponse in several ways. In this tutorial, we’ll achieve…
Read More »