想讨论一下.struts+spring+hibernate的bean的作用域问题,也就是<bean

想讨论一下.struts+spring+hibernate的bean的作用域问题,也就是的设置
从表示层开始:
1.Struts Action对应的bean作用域
2.业务层的Service类的bean作用域
3.数据存储层的DAO类的bean作用域
4.实体层的Bean的作用域.

1.Struts Action对应的bean作用域 scope=prototype
2.业务层的Service类的bean作用域 scope=prototype
3.数据存储层的DAO类的bean作用域 scope不用配置默认单例
4.实体层的Bean的作用域. scop=prototype
个人意见,仅供参考

期待中....