• Skip to main content
  • Skip to primary sidebar
  • Skip to secondary sidebar
  • Skip to footer
  • Java Tutorial
  • Java Posts
  • Node.js
  • Spring Core
  • Algorithms
  • Docker
  • Blogging
  • Misc
Tech Stack Journal

Tech Stack Journal

Spring Core

Autowire using Java Based Spring Configuration

September 3, 2020 by Admin Leave a Comment

In one of our earlier post, we saw an example of Java based Spring Configuration. In that example, we created a Configuration class and wired the beans manually. In this example, we'll autowire the Spring beans using @Autowired and other stereotype annotations and explore the power of auto wiring in Java based Spring Configuration. Class Structure The class structure … [Read more...] about Autowire using Java Based Spring Configuration

Java based Spring Configuration

August 30, 2020 by Admin Leave a Comment

In the previous articles, we saw how to configure the beans based on XML and annotations. In this example, we'll learn how we can configure beans based Java configuration, a third approach to configure Spring beans. We'll follow the similar class design by coding to interfaces. Class Structure Item - a POJO class to store item infoItemDAO - an interface that we will use … [Read more...] about Java based Spring Configuration

Autowire Spring Beans using XML Configuration

August 29, 2020 by Admin Leave a Comment

Let's look at the examples to Autowire the Spring beans by constructor, by type and by their names using Spring XML configuration. Class Structure Product - a POJO class to store product infoProductDAO - an interface that we will use in a dependent service classProductDAOImpl - an implementation of ProductDAO returns list of mocked Product instancesProductService - an … [Read more...] about Autowire Spring Beans using XML Configuration

Annotation Based Spring Config and Auto Wiring

August 27, 2020 by Admin Leave a Comment

In this example, I'll show how to do an Annotation Based Spring configuration to define beans and auto wire them together. Use Case The Use Case we are going to work on is to fetch list of employees from a service. The service inturn fetch it from data access object. Creating a Maven Project First create a simple Maven project by skipping archtype selection in … [Read more...] about Annotation Based Spring Config and Auto Wiring

Spring XML Configuration and Setter Injection

August 25, 2020 by Admin Leave a Comment

In this example, we will inject the dependencies of a class using setter injection. For setter injection, if class A refers to another class called as B, then A should expose a setter method with B as its argument. Use Case The use case that we implement is like the one we did using constructor injection. We write a mock UserDAO class to retrieve User list. UserService … [Read more...] about Spring XML Configuration and Setter Injection

Next Page »

Primary Sidebar

More to See

Factorial Program in JavaScript using While Loop

March 24, 2021 By Admin

Flowchart of Nested For Loop

March 22, 2021 By Admin

Secondary Sidebar

Categories

  • Algorithms
  • Blogging
  • Docker
  • Java
  • JavaScript
  • Misc
  • Node.js
  • Programming Concepts
  • Spring Core
  • Windows

Archives

  • April 2021 (1)
  • March 2021 (7)
  • February 2021 (6)
  • January 2021 (1)
  • December 2020 (1)
  • September 2020 (2)
  • August 2020 (5)
  • July 2020 (4)
  • June 2020 (1)
  • May 2020 (4)
  • April 2020 (22)
  • November 2019 (3)
  • September 2019 (2)
  • August 2019 (6)

Footer

  • Privacy Policy
  • Cookie Policy
  • Contact Us
  • About Us

Recent

  • How to Fix – The system cannot find the file C:\ProgramData\Oracle\Java\javapath\java.exe
  • Factorial Program in JavaScript using While Loop
  • Flowchart of Nested For Loop
  • Difference Between Constructor Overloading and Method Overloading in Java
  • Constructor Calling in Java

Search

Copyright © 2021 · Tech Stack Journal · Log in