querydsl/querydsl-examples/querydsl-example-sql-spring
dependabot[bot] f5c62ee1f6
Bump spring.version from 5.3.12 to 5.3.13 (#3082)
Bumps `spring.version` from 5.3.12 to 5.3.13.

Updates `spring-jdbc` from 5.3.12 to 5.3.13
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.12...v5.3.13)

Updates `spring-context` from 5.3.12 to 5.3.13
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.12...v5.3.13)

Updates `spring-aop` from 5.3.12 to 5.3.13
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.12...v5.3.13)

Updates `spring-test` from 5.3.12 to 5.3.13
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.12...v5.3.13)

---
updated-dependencies:
- dependency-name: org.springframework:spring-jdbc
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.springframework:spring-context
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.springframework:spring-aop
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.springframework:spring-test
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-12-09 23:19:26 +01:00
..
src update test 2021-06-11 21:29:30 +02:00
pom.xml Bump spring.version from 5.3.12 to 5.3.13 (#3082) 2021-12-09 23:19:26 +01: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.