spring
文章平均质量分 96
gdfsbingfeng
这个作者很懒,什么都没留下…
展开
-
spring学习笔记(一)
1.2.spring ModulesThe Spring Framework consists of features organized into about 20 modules. These modules are grouped into Core Container, Data Access/Integration, Web, AOP (Aspect Oriented Progr原创 2013-05-19 09:39:09 · 1101 阅读 · 0 评论 -
spring学习笔记(二)
5.2 Container overviewThe interface org.springframework.context.ApplicationContext represents the Spring IoC container and is responsible for instantiating, configuring, and assembling the aforement原创 2013-05-21 22:58:30 · 940 阅读 · 0 评论 -
Spring中@Autowired注解、@Resource注解的区别
Spring不但支持自己定义的@Autowired注解,还支持几个由JSR-250规范定义的注解,它们分别是@Resource、@PostConstruct以及@PreDestroy。 @Resource的作用相当于@Autowired,只不过@Autowired按byType自动注入,而@Resource默认按 byName自动注入罢了。@Resource有两个属性是比较重要的,分是nam转载 2013-05-23 10:15:10 · 425 阅读 · 0 评论 -
spring学习笔记(三)
Combining lifecycle mechanismsAs of Spring 2.5, you have three options for controlling bean lifecycle behavior: theInitializingBean and DisposableBean callback interfaces; custominit() anddestro原创 2013-05-24 23:31:38 · 1334 阅读 · 0 评论 -
jasypt结合spring加密
1.maven2引用jasypt坐标 org.jasypt jasypt {version} compile jasypt with spring坐标 org.jasypt jasypt-spring31 {version} compile如要结合spri翻译 2013-11-22 16:59:15 · 5847 阅读 · 1 评论