spring 주석 extends

package com.searchly.jest.sample.service;


public interface I {

}
package com.searchly.jest.sample.service;

import javax.annotation.Resource;

//@Component
public class P {

	@Resource
	public T t;
}
package com.searchly.jest.sample.service;

import org.springframework.stereotype.Component;

@Component
public class C extends P implements I {

}
package com.searchly.jest.sample.service;

import org.springframework.stereotype.Component;

@Component
public class T {

}


   
package com.searchly.jest.sample;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.searchly.jest.sample.service.C;
import com.searchly.jest.sample.service.I;
import com.searchly.jest.sample.service.P;

public class Mail {

	public static void main(String[] args) {
		ApplicationContext applicationObjectSupport = new ClassPathXmlApplicationContext(
				"classpath:servlet-context.xml");

		C c = applicationObjectSupport.getBean("c", C.class);

		P p = applicationObjectSupport.getBean(P.class);

		I i = applicationObjectSupport.getBean(I.class);

		System.out.println("========c=====" + c);
		
		System.out.println("===========p==" + p);

		System.out.println("========i=====" + i);
		
		System.out.println("=====c.t===="+c.t);
		
		
		
	
		
		

	}
}

    
log4j:WARN No appenders could be found for logger (org.springframework.core.env.StandardEnvironment).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
========c=====com.searchly.jest.sample.service.C@419444
===========p==com.searchly.jest.sample.service.C@419444
========i=====com.searchly.jest.sample.service.C@419444
=====c.t====com.searchly.jest.sample.service.T@16d2378

    테스트 를 통 해 결론 을 얻 을 수 있다. extends 부모 클래스 에 서 는 부모 클래스 에 주입 속성 (@ Resource) 이 있 으 며, 부모 클래스 가 spring 공장 에 주입 되 지 않 아 도 할당 된다.
 

좋은 웹페이지 즐겨찾기