Christian Beikov

Results 516 comments of Christian Beikov

Ok, this looks like a bug to me. Could you please try to create a reproducer for this? You can use a [quickstart](https://github.com/Blazebit/blaze-persistence?tab=readme-ov-file#quickstart) project for this purpose and attach it...

Hi, can you please share more details? Usually, there are two types of validation: * Validation on persistence (Hibernate configuration) * Validation on request (Spring MVC) Please show the repositories...

Ok, so validation of creatable/updatable entity views is currently not automatically done when an object is passed to some `save` method. I'll mark this as feature request then.

The method `pageAndNavigate` tries to load the page on which an entity is. If the ordering `(creatTs,empId)` produces a list like this: ``` EmpId10 EmpId11 EmpId12 EmpId13 EmpId14 EmpId15 EmpId16...

There is no ETA and first I have to reproduce the bug ;) I'm currently on vacation, so unless someone steps in to provide a test and fix, I won't...

You could do something like this: ```java PagedList empList= cbf.create(em, Employee.class, "emp") .innerJoin("department", "dept") .leftJoin(Employee.class, "employeeToFind").on("employeeToFind").eq(employeeId) .where("dept.deptName").eq("Accounting") .orderByAsc("emp.creatTs") .orderByAsc("emp.empId") .whereOr() .where("emp.creatTs").gtExpression("employeeToFind.creatTs") .whereAnd() .where("emp.creatTs").eqExpression("employeeToFind.creatTs") .where("emp.empId").gtExpression("employeeToFind.empId") .endAnd() .endOr() .page(0, 5) .getResultlist(); ```...

After digging into some problems with the Quarkus 3 integration, I figured that the Quarkus classloader loads classes from target/classes for Maven modules of the current reactor. I suppose that...

Hi there, like I posted on the other issue you created, please create a reproducer for this based on the [quickstart](https://github.com/Blazebit/blaze-persistence#quickstart): ```bash mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-entity-view-sample-jakarta" "-DarchetypeVersion=1.6.9" ```

Thanks for the interest. We have an open issue for this already, which is https://github.com/Blazebit/blaze-persistence/issues/1511 You can watch that issue for updates.