자바 어떻게 사용@Autowired 주석 자동 주입 bean

Java@Autowired 주석 자동 주입 bean
annotationWire.xml(설정 context:annotation-config/)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
    <context:annotation-config/>
    <bean id="order" class="com.annotationWire.pojo.Order" p:order="202020124546" />
    <bean id="user" class="com.annotationWire.pojo.User" />
</beans>
사용자 클래스

package com.annotationWire.pojo;
import lombok.Data;
import org.springframework.beans.factory.annotation.Autowired;
@Data
public class User {
    private String name;
    @Autowired
    private Order order;
}
Order 클래스

package com.annotationWire.pojo;
import lombok.Data;
@Data
public class Order {
    private String order;
}
테스트 클래스

package com.annotationWire;
import com.annotationWire.pojo.User;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestAnnotation {
    @Test
    public void test(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("annotationWire.xml");
        User student = applicationContext.getBean(User.class);
        System.out.println(student);
    }
}
자바 설정 spring,@Autowired 자동 으로 bean 을 주입 할 수 없 는 문제
설정 클래스 에@Componentscan 을 추가 해 야 합 니 다.
루트 Configure 와 ServletConfig 두 가지 유형 에서 scan 의 대상 은 다 릅 니 다.
ServletConfig 는 Dispatcher Servlet 를 등록 하 는 데 사 용 됩 니 다.controller 층 을 스 캔 하 는 데 만 사 용 됩 니 다.
RootConfigure 는 ContextLoaderListener 를 등록 하 는 데 사 용 됩 니 다.그 가 스 캔 한 범 위 는 controller 를 제외 한 bean 입 니 다.예 를 들 어 dao,service,bean 실체 입 니 다.
이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.

좋은 웹페이지 즐겨찾기