Changes between Version 2 and Version 3 of interfaces


Ignore:
Timestamp:
Dec 19, 2008, 5:53:15 AM (15 years ago)
Author:
erikvaningen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • interfaces

    v2 v3  
    1 Using interfaces or not.
     1Using interfaces or not for in the persistence and service layer.
    22
    33'''Option 1:''' Using interfaces
     
    55 * - duplicates number of files
    66 * - more work
     7 * - refactoring is more work
    78
    89
     
    1011 * + less files
    1112 * + you ain't gonna need it
    12  * - Spring wants one approach or the other (<tx:annotation-driven  proxy-target-class="true" />).
    1313
    1414Chosen option 2.
    15 
     15Spring 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.