SQL Mapper
SQL Mapper is a simple Java library which helps in dealing with JDBC.
Using this library you can focus on how you want to map results of your SQL query to your domain objects. You don't need to use any xml configuration (like, for example in MyBatis/iBatis). You also don't need to use any annotations to run SQL Mapper. The SQL Mapper is similar to Spring JDBC Framework, but it has some of its features simplified and some changed.
It runs on JDK 7 or higher.
The zip archive contains the library jar, sources and javadocs, and also a demo which shows how to use...