这个spring,让我回忆了好几节课,感觉脑子变蠢了。真的是蠢虫!!!
首先,spring的主要目的是解耦合,动态生成类。
它的创建过程
1.pom文件引入依赖spring的依赖
2,写spring.xml配置文件,它主要是注入bean,把创建的Java类放入里边,spring便能注入,通过反射机制可以创建对象。具体代码当然,不止只是创建对象,还可以在对对象里面是属性赋值。
3.具体得到某个bean,即spring创建的对象
ApplicationContext applicationContext=new ClassPathXmlApplicationContext("spring.xml");
judgeservlet judgeservlet=applicationContext.getBean(unhappy.service.judgeservlet.class);
getBean()方法得到spring创建的对象。
这是通过xml文件创建,而使用注解更加的简化,可以直接省略不少事情
@Controller是把这个bean交给spring处理(注册bean),即spring可以得到类的对象。
类似于
<bean id="sqlssion" class="org.mybatis.spring.SqlSessionTemplate">
@Autowired是bean里面的属性也是spring注入值,而,@Autowired 类,的时候注入的就是注入了的bean
<property ></property>