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工厂,也会被赋值。

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值