Togglz — Feature Toggles pattern for Java (Spring)Togglz is an implementation of Feature Toggles pattern in Java. Toggles are a very common agile development practices in the context of…Apr 19, 2020A response icon2Apr 19, 2020A response icon2
Spring JPA native query for date-time MySQL and PostgreSQLSpring JPA allows us to use native queries, but a downside of this approach is that the query is sent directly to database, and we need to…Feb 6, 2020A response icon1Feb 6, 2020A response icon1
Kubernetes Architecture — Master Node Components (Summary)In this article I will share the summary of components which are an integral part of Kubernetes Master Node (The brain of our cluster). I…Sep 14, 2019Sep 14, 2019
Kubernetes — Liveness and Readiness Probes — DifferenceLiveness and Readiness probes are used to control the health of an application running inside a Pod’s container. Both of them are very…Jun 20, 2019A response icon6Jun 20, 2019A response icon6
Published inAurora SolutionsSpring Cloud — As a reverse proxy serverA reverse proxy server is a type of proxy server that retrieves resources on behalf of a client from one or more servers. These resources…Mar 13, 2019Mar 13, 2019
Published inStakaterLogrotate — Manage logs easilyLog rotation is a process of removing/storing old logs while not affecting the latest/newer logsDec 29, 2018A response icon2Dec 29, 2018A response icon2
Docker — Remove all stopped containersAll stopped containers can be removed via this commandDec 17, 2018Dec 17, 2018
Spring-Pageable custom maximum sizeSpring Pageable has a default size of 1000, and if you will try to fetch more records than 1000 in one page, it will not be possible.May 31, 2018A response icon1May 31, 2018A response icon1
Spring-Mongo Template PaginationBy default, spring mongo template has no method to find by page. It searches, and returns the whole list of records. To add pagination we…May 30, 2018A response icon11May 30, 2018A response icon11
Spring — Mongo DB Dynamic QuerySpring provides great support for mongo db via spring-data-mongodb package. We can use MongoRepository for querying database, but can not…May 28, 2018A response icon2May 28, 2018A response icon2