querydsl-entityql
querydsl-entityql copied to clipboard
QueryDSL EntityQL - Native Query builder for JPA
Bumps [h2](https://github.com/h2database/h2database) from 1.4.200 to 2.1.210. Release notes Sourced from h2's releases. Version 2.1.210 Two security vulnerabilities in H2 Console (CVE-2022-23221 and possible DNS rebinding attack) are fixed. Persistent databases...
I came here from a reddit discussion: https://www.reddit.com/r/java/comments/o2z0yu/hibernate_community_performance_comparison_with/h2aqdjx?utm_source=share&utm_medium=web2x&context=3 I think these resource management lines should be moved out of the benchmark into the setup section: https://github.com/eXsio/querydsl-entityql/blob/fb6155328fa0f6d571138076b30aab717a40e8d3/src/test/java/pl/exsio/querydsl/entityql/java/benchmark/execution/jdbc/JDBCQueryExecutionBenchmark.java#L39 https://github.com/eXsio/querydsl-entityql/blob/fb6155328fa0f6d571138076b30aab717a40e8d3/src/test/java/pl/exsio/querydsl/entityql/java/benchmark/execution/jpa/JpaJPQLQueryExecutionBenchmark.java#L34 Or, at least,...
Annotation processor for static model would significantly reduce the commitment developer would have to do in order to use querydsl-entityql with no Maven plugin configuration. It should behave similar to...
Hi @eXsio QClass created with Entityql as below will fail when using ```SQLInsertClause.populate()```. ```java @Test void sqlPopulateInsert() throws Exception { //given Book entity = Book.builder() .bookNo(1) .bookType(BookType.IT) .build(); //when sqlQueryFactory.insert(qBook)...