其实先演示操作再讲解效果会比较好,感觉视频开头一大半的纯理论讲解都很枯燥乏味,而实际操作却简单到无脑。
2015-09-15
生命周期:
1,只要实现InitializingBean、DisposableBean肯定会执行afterPropertiesSet、destroy方法
2,如果bean的init-method和default-init-method同时定义,那么只会走init-method
3,如果bean的destroy-method和default-destroy-method同时定义,那么只会走destroy-method
1,只要实现InitializingBean、DisposableBean肯定会执行afterPropertiesSet、destroy方法
2,如果bean的init-method和default-init-method同时定义,那么只会走init-method
3,如果bean的destroy-method和default-destroy-method同时定义,那么只会走destroy-method
2015-09-14
对于注解只适合相对固定的代码层,如DAO层,还是适合中小型项目。大型项目还是用xml,xml可以使分散的配置集中化管理!
2015-09-11