随笔分类 -  Spring

摘要:@Component:标注一个普通的Spring Bean类。@Controller:标注控制器组件类。@Service:标注业务逻辑组件类。@Repository:标注DAO组件类。@Scope:指定Bean的作用域。@Resource:配置依赖。@PostConstruct和@PreDestro... 阅读全文
posted @ 2014-05-15 15:18 harryV
摘要:1:设值注入 spring容器使用属性的setter方法来注入被依赖的实例(使用最多) Person接口package com.lee.bean;public interface Person { public void eat();} Fruit接口package com.lee.be... 阅读全文
posted @ 2014-05-14 16:25 harryV
摘要:1:struts2-spring-pluginSpring整合Struts2所必须的jar包2:org.springframework.expression.PropertyAccessor缺少org.springframework.expression jar包3:web工程导入jar包不能用 b... 阅读全文
posted @ 2014-05-14 11:04 harryV