Sometimes we face a requirement where we have to save an unstructured data into our database, in this case we face two issues. The first one .................
In this article we are going to see how encrypt a string in plain java without using any framework or dependency .................
In this post we are going to see the difference between @Repository, @Service, @Configuration, and @Controller annotations and how to make a custom one ...
In this post, we are building a versioned REST API, using Spring to create the api, Kubernetes as our deployment infrastructure ...
In this article, we are going to examine how we can use aspect programming to centralize logs ...
Some times we need to carry out certain actions before sending a record to the database, as we know for sql databases Spring data provides some life-cycle callback methods like @PostPersist..
In this article, we will see how to start a postgres container with some initialized data, when we launch an integration test.
In this post I am going to talk about layers and build stages to improve performance and caching using docker files and buildpacks.
Some times we need to carry out certain actions before saving a record into the database. In this post, we are going to see how to...
In this article, we are going to see how to make a unit test to a @Controller annotated class. This means we are going to isolate it from the spring context.
In this post we are going to see, how to get the current authenticated user, in our spring project, using...