Juhilee Nazarejuhilee.hashnode.dev·Jul 8, 2024@Component vs @Bean Annotations in SpringIntroduction In this article we'll explore two annotations @Bean and @Component. Both these annotations are used to define Spring Beans - objects that'll be managed by Spring IoC container. However, they're used in different contexts as per project's...25 likes·131 readsSpring BootSpringboot
Juhilee Nazarejuhilee.hashnode.dev·Jul 6, 2024From Tight Coupling to Loose Coupling: The Spring Boot Advantage - PART 2Introduction As discussed in From Tight Coupling to Loose Coupling: The Spring Boot Advantage - PART 1 in this article we'll see how Spring Beans are helpful in achieving loose coupling even when you're already using Java Interfaces. Before we procee...28 likes·151 readsSpring BootSpringboot
Sonalika Patelsonablogs.hashnode.dev·Apr 5, 2024Transactions in Spring BootIn Spring Boot, transactions are managed using the Spring Framework's transaction management capabilities. Transactions are essential for ensuring data consistency and integrity in database operations. Spring Boot provides several ways to manage tran...springboot transactions
Karthik Kulkarnidevscribbles.hashnode.dev·Nov 8, 2023🌟 Demystifying Spring Boot Annotations 🌟When working with the Spring Boot framework, annotations play a crucial role in providing metadata and configuration information for your applications. In this blog, we'll dive into some of the most important Spring Boot annotations and their applica...Spring BootSpringBootAnnotations
Mayank Jaincodesecrets.hashnode.dev·Jun 8, 2023Spring Boot Annotations: Cheat sheetWhat are these annotations In Java, annotations are a form of metadata that provides additional information about program elements, such as classes, methods, fields, or parameters. They allow developers to add instructions, markers, or descriptors to...1 like·372 readsJava
Sandeep Beegudemsandeepbegudem.hashnode.dev·Jul 29, 2022Hide the entity/model class field value in SpringBoot appIntroduction: It's easy to hide the field value from the REST API call using the annotation JsonIgnore, all you need is the field that you want to hide the variable/field. Let's take an example UserCredentials java class below: package com.example.re...2 likes·208 readsSpringboot