Tag: spring boot
How to Connect MySQL with Spring Boot
Last updated on 23rd March 2023 by H Sayyed | Category: Spring Boot
MySql is one of the most widely used open-source relational databases, and Spring Boot is a popular framework used to build Java applications quickly and easily. Integrating MySql with Spring Boot can provide high-performance applications with minimal effort. In this step-by-step guide, we will show you how to connect MySql with Spring Boot. We will […]
Sending Email via SMTP in Spring Boot
Last updated on 23rd March 2023 by H Sayyed | Category: Spring Boot
Spring Boot is a popular framework for building robust and scalable web applications. One of the most common requirements in web applications is the ability to send email notifications to users. In this blog post, we will discuss how to send email via SMTP in Spring Boot. SMTP stands for Simple Mail Transfer Protocol, and […]
Spring Boot with Apache Camel
Last updated on 23rd March 2023 by H Sayyed | Category: Spring Boot
Introduction Apache Camel is a lightweight integration framework that makes it easy to integrate different systems and technologies together. It provides a powerful and flexible platform for building enterprise applications that are scalable and reliable. Spring Boot, on the other hand, is a popular framework for building microservices and web applications. By combining Spring Boot […]
Spring Boot with Apache Kafka
Last updated on 23rd March 2023 by H Sayyed | Category: Spring Boot
Introduction Apache Kafka is a distributed streaming platform that enables real-time processing of large volumes of data. It provides a highly scalable and fault-tolerant messaging system that can be used to build a wide range of applications. Spring Boot, on the other hand, is a popular framework for building microservices and web applications. By combining […]
Spring Boot, Apache Camel and Kafka – Building Distributed Messaging Applications
Last updated on 23rd March 2023 by H Sayyed | Category: Spring Boot
Introduction Spring Boot is a popular Java framework that is widely used for building microservices and web applications. Apache Camel is an open-source integration framework that enables the routing and mediation of messages between different systems. Apache Kafka is a distributed streaming platform that is used for building real-time data streaming applications. When Spring Boot, […]
How to Connect MongoDB with Spring Boot
Last updated on 7th March 2023 by H Sayyed | Category: Spring Boot
Are you looking to integrate MongoDB with your Spring Boot application? MongoDB is a NoSQL database that offers great scalability and flexibility, making it a popular choice for modern applications. Spring Boot, on the other hand, is a popular framework for building Java applications quickly and easily. Integrating MongoDB with Spring Boot is a straightforward […]
Pagination in Spring Boot using Thymeleaf
Last updated on 5th March 2023 by H Sayyed | Category: Spring Boot
If you’re building a web application with Spring Boot, you may need to display large amounts of data on a single page. However, displaying all the data at once can be overwhelming and slow down the page. That’s where pagination comes in. Pagination allows you to split large data sets into smaller, more manageable pages. […]
One-to-One Relationship in JPA
Last updated on 5th March 2023 by H Sayyed | Category: Spring Boot
Introduction In Java Persistence API (JPA), relationships between entities are used to model the interactions between objects in the application and their corresponding data in the database. One of the most common relationships is the One-to-One relationship, which allows a single instance of an entity to be associated with only one instance of another entity. […]
HttpSession in Spring Boot Session Management
Last updated on 5th March 2023 by H Sayyed | Category: Spring Boot
Session management is an essential part of web applications. It allows the server to store and retrieve user-specific data between requests. HttpSession is a built-in mechanism provided by the Java Servlet API to manage sessions. Spring Boot makes it easy to use HttpSession in your web applications. In this blog post, we will demonstrate how […]
Solving WebSecurityConfigurerAdapter Deprecated Warning in Spring Boot 2.x
Last updated on 5th March 2023 by H Sayyed | Category: Spring Boot
In the world of web development, security is a top priority. With the rise of cyber threats, developers need to take precautions to ensure that their applications are secure. One popular framework that developers use to build web applications is Spring Boot. However, with the release of Spring Boot 2.x, there have been some changes […]