Rohan Shahrohanshah.hashnode.net·Sep 10, 2022Kafka Tutorial with Java Spring BootWhy Kafka? Kafka has become the mainstay of messaging in applications with high-volume requirements According to confluent.io, Apache Kafka is an open source distributed streaming system used for stream processing, real-time data pipelines, and data...Discuss·17 likes·354 readskafka
Prajwal Mbprajwalbandak.hashnode.net·Jan 3, 2023Understanding logging and its levels in Spring BootAs a software developer, do you spend most of your time debugging your code? Going through the entire codebase and still not able to figure out where your code went awry? Here’s where logging comes to the rescue! Logging is the process of tracking al...Discuss·16 likes·33 readsGeneral Programming
Lorenzo Milicialorenzomilicia.hashnode.net·Feb 20, 2023Spring Batch partitioning - Part OneHello everybody!In this two parts series, I want to show you my small extension library to the Spring Batch framework, composed by an extension to the ResourcePartitioner and the FileItemReader. In this first part, we'll take a look at how partitioni...Discuss·10 likes·89 readsSpring Batch PartitioningSpring
Pranjal Goyalthe-spring-boot-chronicles.hashnode.net·Apr 24, 2023Getting Started with Spring BootWhat is Spring? Spring Framework is a Java platform that provides comprehensive infrastructure support for developing Java applications. Spring handles the infrastructure so you can focus on your application. What is Spring Boot? Spring Boot provides...DiscussSpringboot
Pranay Gaikwadpranayblog.hashnode.net·Apr 16, 2023Spring Framework ArchitectureOverview: The Spring framework is a widely-used open-source Java framework that provides a comprehensive programming and configuration model for building enterprise applications. Its architecture is designed around two core principles: Dependency In...DiscussSpring-HibernateSpring
Durlabh Sharmadurlabhsharma.hashnode.net·Apr 8, 2023Spring Cloud - Intro to Circuit Breaker with Spring Boot 3 & Resilience4jHola fellow devs! Today, we'll talk a little bit about Circuit Breaker Pattern and how we can implement it in Spring Boot with Resilience4j as our choice of Circuit Breaker library. So to start, well first talk about the problem we're trying to solve...Discuss·89 readsJava
Pranay Gaikwadpranayblog.hashnode.net·Apr 4, 2023Hibernate - Cache ExpirationOverview of caching in Hibernate: Caching in Hibernate means storing and reusing frequently used data to speed up your application. There are two kinds of caching: Session-level and SessionFactory-level. Level 1 cache is a cache that stores objects...DiscussSpring-HibernateSpring framework
Durlabh Sharmadurlabhsharma.hashnode.net·Apr 3, 2023Spring Cloud - Service Discovery with Netflix Eureka & Spring Boot 3.x.xIn this article, we are going to talk about one of the best service discovery tools out in the market which is Eureka from the Netflix OSS set of tools. This brings us to our first question. What is Service Discovery and why should we use it? To sum ...Discuss·1 like·349 readsSpringboot
Pranay Gaikwadpranayblog.hashnode.net·Apr 2, 2023How to Enabling & Implementing First and Second Level Cache with Hibernate?overview of Hibernate and caching: If you're a Java developer, you've probably heard of Hibernate. It's a free, open-source ORM framework that lets you map your Java objects to tables in a relational database. Basically, it makes database programmin...DiscussSpringboot
Pranay Gaikwadpranayblog.hashnode.net·Mar 29, 2023Hibernate – PaginationIntroduction: Pagination is the process of dividing a large set of data into smaller, more manageable chunks or pages for easier navigation and faster loading times. It is a common technique used in web applications to display a large amount of data...DiscussSpringboot
Pranay Gaikwadpranayblog.hashnode.net·Mar 28, 2023Hibernate – Save Image and Other Types of Values to DatabaseOverview In Hibernate, you can save images and other types of values as attributes of your entity classes using appropriate data types and mappings. To save images, you can use the @Lob annotation with a data type of byte[] or Blob to indicate that...Discuss·31 readshibernate
Lokesh Sanapallilokesh1729.hashnode.net·Mar 23, 2023HTTP Retry with Exponential Backoff in Java and Spring BootIn this blog post, we will learn to implement the HTTP retry mechanism in java and spring boot. Rest Template Rest template is the popular HTTP client in spring boot. We will create a configuration and create a bean for it so that the spring boot's c...Discuss·33 readsJava
Priyank Shahps25blogs.hashnode.net·Mar 15, 2023Spring & Spring Boot what is that 🤔?Last weekend I learnt about Spring and Spring Boot. Well, I was completely new to this and found it quite interesting. Here I have tried to give a small glimpse of what Spring and Spring Boot are and how both of them are different. I have also shared...DiscussSpring