VAVijayalaxmi Adepuinlearnjavawithvijayalaxmi.hashnode.dev·Apr 11, 2022 · 2 min readSpring boot with Retry MechanismSpring Retry: Spring provides Retry mechanism by adding dependency in pom file. Spring Retry provides an ability to automatically re-invoke the failed operation. By using the Spring Retry provided annotations. Required Dependencies: <dependency> ...00
VAVijayalaxmi Adepuinlearnjavawithvijayalaxmi.hashnode.dev·Nov 12, 2021 · 2 min readHow to install rabbitmq on linux machineWhat is RabbitMq and How it works: RabbitMQ is an open source message broker software. It accepts messages from producers, and delivers them to consumers. It acts like a middleman which can be used to reduce loads and delivery times taken by web appl...00
VAVijayalaxmi Adepuinlearnjavawithvijayalaxmi.hashnode.dev·Oct 27, 2021 · 1 min readHow to set base url for rest in springbootIntroduction: Instead of maintaining base url for all rest apis in each controller using @RequestMapping(/api/v1). we can set base url at global level of the springboot project using WebMvcConfigurer interface we can override configurePathMatch metho...00
VAVijayalaxmi Adepuinlearnjavawithvijayalaxmi.hashnode.dev·Oct 22, 2021 · 3 min readHow to read data from excel fileIntroduction: Poiji is developed on top of very popular Apache POI just like Spring Boot on top of Spring. It uses lots of annotations to make our tasks even easier.Poiji is a teeny Java library that programmatically maps excel sheet to Java classes....00
VAVijayalaxmi Adepuinlearnjavawithvijayalaxmi.hashnode.dev·Oct 13, 2021 · 2 min readSpring Rest API Request Body ValidationIntroduction: Before processing the request body validation is must. We can validate the request body by using hibernate and Javax Validation dependency. Maven Dependencies <dependency> <groupId>javax.validation</groupId> <artifactId>validat...00