Courses
Sale
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
Java
9.4K+ articles
Misc
7.7K+ articles
Advance Java
732+ articles
Project
616+ articles
mysql
355+ articles
Java-Spring
297+ articles
Springboot
185+ articles
Java-Spring-Data-JPA
62+ articles
java-advanced
48+ articles
Java-Spring-Boot
345+ posts
Recent Articles
Password Encoding
Last Updated: 08 September 2026
Spring Security provides the PasswordEncoder interface to securely store and verify user passwords in Spring Boot applications. Instead of storing passwords in plain text,...
read more
Java-Spring-Boot
Advance Java
Security Filters with Spring Boot
Last Updated: 08 September 2026
Spring Security is a powerful framework used to secure Spring Boot applications. It uses a filter chain to process incoming HTTP requests before they reach the controller....
read more
Java-Spring-Boot
Java-Spring-Security
Advance Java
Entity and Repository in spring boot
Last Updated: 08 September 2026
Spring Boot simplifies database application development by providing auto-configuration and starter dependencies. When working with a database using Spring Data JPA, two i...
read more
Java-Spring-Boot
Advance Java
Implement Many-to-Many Mapping in Spring Boot
Last Updated: 08 September 2026
Spring Boot simplifies Java application development by providing auto-configuration, embedded servers, and starter dependencies. A Many-to-Many relationship means that mul...
read more
Java-Spring-Boot
Advance Java
Implement One-to-One Mapping in Spring Boot
Last Updated: 08 September 2026
One-to-One Mapping in Spring Boot defines a relationship where one entity is associated with exactly one instance of another entity. Spring Data JPA provides the @OneToOne...
read more
Java-Spring-Boot
Advance Java
How to Integrate and Call a GraphQL API in a Java Spring Boot Application?
Last Updated: 23 July 2025
GraphQL is a more flexible query language and runtime for APIs that lets clients request exactly the data they need by making data fetching more efficient. Compared to RES...
read more
Picked
GraphQL
Java-Spring-Boot
Advance Java
How to Use @Autowired and @InjectMocks in Spring Boot Tests?
Last Updated: 23 July 2025
In Spring Boot application development, writing the unit tests is essential for the ensuring that the application behaves as the expected. Testing can be challenging, espe...
read more
Picked
Java-Spring-Boot