Old link, but it’s interesting to read how people use Spring to simplify and reduce LOC for their apps. Read about Matt Raibles adventure with integrating Spring into AppFuse.
Categories
Old link, but it’s interesting to read how people use Spring to simplify and reduce LOC for their apps. Read about Matt Raibles adventure with integrating Spring into AppFuse.
I’ve used the DAO pattern in earlier applications. In addition to make the database layer exchangable, I think it’s main benefit is clear separation from the business logic. Of course you could achieve that without the pattern, but DAO helps you separate correctly all the way. Tutotial here.