querydsl/querydsl-examples/querydsl-example-sql-spring
John Tims 655b9f65fc Set parent in example modules
and remove some unnecessary configuration in the  poms. Also, disable
checkstyle because it wants javadocs on all the public methods.
2015-06-28 22:14:23 -04:00
..
src Remove trailing spaces in examples 2015-06-28 17:04:50 -04:00
pom.xml Set parent in example modules 2015-06-28 22:14:23 -04:00
README.md Consolidate examples 2015-06-28 07:34:33 -04:00

Querydsl Customer DAO

Querydsl Customer DAO is an example project that demonstrates some best practices on how to use Querydsl SQL on the DAO level in Spring projects.

Compared to direct JDBC usage Querydsl SQL is typesafe, closer to SQL and abstracts over SQL dialect specific differences.

This example project presents a version of Querydsl SQL usage where no generated bean types are used, but external DTO types are populated from queries.