Spring Projects Issues
Spring Projects Issues
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented Thanks for reporting this. Just to make sure: > When constructing a Querydsl predicate from request parameters, the source type is inspected to determine which parameter names...
**[James Howe](https://jira.spring.io/secure/ViewProfile.jspa?name=jamesmhowe)** commented > You mean the opposite, don't you? No. [Here is where it checks whether the request parameter matches something](https://github.com/spring-projects/spring-data-commons/blob/2.3.1.RELEASE/src/main/java/org/springframework/data/querydsl/binding/QuerydslPredicateBuilder.java#L105). Because it's checking the source type, it accepts...
**[Mahmoud Ben Hassine](https://jira.spring.io/secure/ViewProfile.jspa?name=mbenhassine)** commented Hi, I do confirm, the `maxVarCharLength` is used for both `exitMessageLength` and `shortContextLength`. When increased to a high value to support long stack traces, we would...
**[Dave Syer](https://jira.spring.io/secure/ViewProfile.jspa?name=david_syer)** commented You need to flush JPA changes before Spring Batch tries to commit its own meta data. The best way to do that is in the ItemWriter. Any...
**[Quinton McCombs](https://jira.spring.io/secure/ViewProfile.jspa?name=quintonm)** commented We are already using the JpaWriter supplied with Spring Batch which performs the flush. We have a requirement to audit all database changes and identify the changes...
**[Dave Syer](https://jira.spring.io/secure/ViewProfile.jspa?name=david_syer)** commented If you are using transaction hooks you are going to have to tread very carefully. You need to somehow ensure that the vendor hook runs before the...
**[Ramkumar Kirhsnan](https://jira.spring.io/secure/ViewProfile.jspa?name=ramkumar)** commented We've also got the same failure after the one of the steps failed to commit due to database exception thrown while writing into the database. Following is...
**[Dave Syer](https://jira.spring.io/secure/ViewProfile.jspa?name=david_syer)** commented I think that problem is unavoidable if you don't flush the Hibernate session in your ItemWriter. You have made life complicated by using a partition step, but...
**[Kristof Buts](https://jira.spring.io/secure/ViewProfile.jspa?name=butskri)** commented maven project for reproducing the bug
**[Kristof Buts](https://jira.spring.io/secure/ViewProfile.jspa?name=butskri)** commented In our current project, we are also experiencing this problem in some of our batches, but until yesterday we couldn't reproduce it. After two days trying to...