Java
-
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 » -
Flexible Styling with Varying Criteria for POI-created documents
Intro This post explains the difficulties with applying styles to a document based on varying criteria and offers a solution.…
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 » -
Explicit No-Arguments Constructor Versus Default Constructor
Most developers new to Java quickly learn that a “default constructor” is implicitly created (by javac) for their Java classes…
Read More » -
Box old objects to be autoclosable
Since Java 7 we can use try-with-resources and have any object automatically closed that implements the Autocloseable interface. If the…
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 »