LakshmiPerumalmalalakshmi.hashnode.dev·Nov 19, 2024Spring Framework and Spring bootSpring Core: Spring is one of the most powerful frameworks in Java. Of course, there are many other frameworks like Struts and EJB, and on the database side, we have JPA. However, with the help of Spring, we can achieve everything in one framework. O...Discuss·10 likesSpringboot
krishna chaitanyakrishnavulchi.hashnode.dev·Oct 6, 2024In-Depth Guide to Java Reflection: Unveiling the Power Behind the CurtainsJava Reflection is a powerful tool in the Java programming language that allows developers to inspect and manipulate classes, methods, and fields at runtime, even if they are private. While often associated with advanced programming, reflection is al...Discuss·34 readsJava
Sudarshan Doiphodesudarshandoiphode.hashnode.dev·Sep 21, 2024@ConfigurationProperties: A Powerful Tool for Spring Boot ConfigurationIntroduction: While working with Spring Boot applications, most of the times we need to externalize configurations into properties files or environment variables. This makes our application more flexible and easier to maintain in production. In Sprin...Discuss·10 likesspring boot configuration
ichan-akirajournal.ichan.moe·Sep 14, 2024Spring Data JPA with PostgreSQL's JSONBWhile using Spring Boot with PostgreSQL, have you ever needed to retrieve or persist data to JSONB column? If your answer is yes, and you are visiting this journal entry, chances are high that you need help to solve the error when using JSONB column....Discuss·64 readsJava
Nikhil Soman Sahunikhilsomansahu.hashnode.dev·Sep 11, 2024how to connect mysql with spring bootTo connect MySQL with Spring Boot, you'll need to follow these steps: Add MySQL dependencies to your project Configure the database connection Create a simple entity and repository Here's a concise guide: Add dependencies to your pom.xml: <dep...DiscussMySQL
Sudarshan Doiphodesudarshandoiphode.hashnode.dev·Aug 11, 2024How HikariCP Connection Pools Improve Spring Boot MicroservicesIntroduction In the world of microservices, where efficiency, scalability, and performance are paramount, managing database connections effectively is crucial. HikariCP, a robust connection pool, plays a vital role in achieving optimal connection poo...Discusshikaricp
Aneesh Kumaraneeshthetechmaestro.hashnode.dev·Aug 8, 2024Spring Boot Made Easy: Beginner's Quick Start GuideIntroduction Welcome to our quick start guide on Spring Boot Simplified for Beginners! Whether you're a seasoned Java developer or just starting, Spring Boot makes building robust applications a breeze. In this guide, we’ll break down everything you ...Discuss·10 likes·58 readsSpringboot
André Felipe Costa Bentobentodev.hashnode.dev·Aug 6, 2024Exploring Spring Data: An In-Depth GuideIntroduction to Spring Data Spring Data is a part of the larger Spring Framework that simplifies the interaction with databases. It provides a consistent, Spring-based programming model for data access, while still retaining the special traits of the...DiscussJava
Bikash Nishankbikash-nishank.hashnode.dev·Aug 4, 2024Comprehensive Guide to Spring Data JPASpring Data JPA is a powerful framework that simplifies the implementation of data access layers for Java applications. Whether you're a beginner or an experienced developer, understanding the key concepts and features of Spring Data JPA can signific...DiscussSpring Data Jpa
Chinemeze ThankGodezehash.hashnode.dev·Aug 3, 2024When to Use JPA Specification Over Native Query or JPQL in Java Spring BootIn Spring Boot applications, accessing and querying data are essential tasks that one must carry out at some point. For different scenarios, developers frequently select between JPQL (Java Persistence Query Language), Native Query, and JPA Specificat...Discuss·2 likes·49 readsJPA Entity