-
xml和注解都支持的初始化和销毁方式:
查看全部 -
课程内容笔记
查看全部 -
bean查看全部
-
IOC默认是单例模式,单例模式不需要重复new对象,这样做的好处是用于解耦查看全部
-
通过注解方式开启懒加载:
查看全部 -
Spring通过注解形式添加作用域:
查看全部 -
SpringIoC容器内置接口实例注入:
查看全部 -
String、Integer等类型直接赋值:
查看全部 -
将多个泛型实例注入到List:
查看全部 -
直接注入List实例:
查看全部 -
通过指明要注入哪个Bean的id:
查看全部 -
通过属性直接注入Bean:
@Component public class MyBean{ @Autowired//通过属性直接注入bean private AnotherBean anotherBean; public AnotherBean getAnotherBean(){return anotherBean;} public void setAnotherBean(AnotherBean anotherBean){ this.anotherBean = anotherBean; } }
查看全部 -
通过构造方法和Set方法注入Bean:
@Component public class MyBean{ private AnotherBean1 anotherBean1; private AnotherBean2 anotherBean2; @Autowired//通过构造方法注入bean public MyBean(AnotherBean1 anotherBean1){this.anotherBean1 = anotherBean1;} public AnotherBean2 getAnotherBean2(){return anotherBean2;} @Autowired//通过set方法注入bean public void setAnotherBean2(AnotherBean2 anotherBean2){this.anotherBean2 = anotherBean2;} }
查看全部 -
注入bean
查看全部 -
Bean别名指定的两种方式(.xml文件,注解):
查看全部
举报
0/150
提交
取消