querydsl/querydsl-examples/querydsl-example-sql-spring
dependabot[bot] bfb8d27808
Bump lombok from 1.18.16 to 1.18.20
Bumps [lombok](https://github.com/rzwitserloot/lombok) from 1.18.16 to 1.18.20.
- [Release notes](https://github.com/rzwitserloot/lombok/releases)
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](https://github.com/rzwitserloot/lombok/compare/v1.18.16...v1.18.20)

---
updated-dependencies:
- dependency-name: org.projectlombok:lombok
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-03 06:43:34 +00:00
..
src Compile on Java 11 2021-02-24 18:23:23 +01:00
pom.xml Bump lombok from 1.18.16 to 1.18.20 2021-06-03 06:43:34 +00: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.