Possible Duplicate:
What is the right way to use spring MVC with Hibernate in DAO, sevice layer architecture
I have 5 main layers in my application:
- Controller
- Delegate
- Service
- Facade
- DAO
Where should the @Transactional
annotation go, according to the best practices?
Are there any exceptions where they can go in a Controller?