Spring / Spring module questions
Spring framework: Explain the JDBC abstraction and DAO module
JDBC abstraction and DAO module helps keep up the database code clean and simple, prevent problems that result from a failure to close database resources like connections.
It provides a layer of meaningful exceptions on top of the error messages thrown by several database servers.
It also makes use of Spring AOP module to provide transaction management services for objects in a Spring application.
More Related questions...