Spring配置Annotation的几点备忘
1、如何注入常量
@Value("${upload.filePath}")
?
2、如何配置Service、controler、DAO
@Controller
@Service("orgService")重命名为orgService否则按照orgServiceImpl命名
@Repository
?
3、如何配置延迟加载
@Lazy(false)
?
4、如何配置bean的作用域
@Scope("singleton")
5、如何配置IBatis2.x版本的SqlMapClientTemplate
原有的SqlMapClientDaoSupport的setSqlMapClient是final方法,所以不能重写并标记为@Autowired
?
6、如何在域的位置注入bean
@Resource(name="beanId")
?
7、如何配置事务
<tx:annotation-driven transaction-manager="transactionManager" proxy-target-/>?
?
9、如何将整个类的方法配置为事务包裹的方法
@Transactional
public class A{
}
定义在类上的 ?