Changes between Version 2 and Version 3 of interfaces
- Timestamp:
- 12/19/08 05:53:15 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
interfaces
v2 v3 1 Using interfaces or not .1 Using interfaces or not for in the persistence and service layer. 2 2 3 3 '''Option 1:''' Using interfaces … … 5 5 * - duplicates number of files 6 6 * - more work 7 * - refactoring is more work 7 8 8 9 … … 10 11 * + less files 11 12 * + you ain't gonna need it 12 * - Spring wants one approach or the other (<tx:annotation-driven proxy-target-class="true" />).13 13 14 14 Chosen option 2. 15 15 Spring wants one approach or the other (<tx:annotation-driven proxy-target-class="true" />). Therefore it is important to choose. We can start with option 2 and if we really need it we can migrate to option 1.