updating code examples with generics/varargs; polishing

This commit is contained in:
Thomas Risberg
2009-05-09 02:40:54 +00:00
parent d34953e933
commit 93cf346fb1
2 changed files with 153 additions and 151 deletions

View File

@@ -8,11 +8,11 @@
<title>Introduction</title>
<para>The Data Access Object (DAO) support in Spring is aimed at making it
easy to work with data access technologies like JDBC, Hibernate or JDO in
a consistent way. This allows one to switch between the aforementioned
persistence technologies fairly easily and it also allows one to code
without worrying about catching exceptions that are specific to each
technology.</para>
easy to work with data access technologies like JDBC, Hibernate, JPA or
JDO in a consistent way. This allows one to switch between the
aforementioned persistence technologies fairly easily and it also allows
one to code without worrying about catching exceptions that are specific
to each technology.</para>
</section>
<section id="dao-exceptions">