자바 어떻게 사용@Autowired 주석 자동 주입 bean
2549 단어 Java@Autowired주해비 안 주입
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 실체 입 니 다.
이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.