We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
springboot version: v3.3.7-SNAPSHOT
Page<SchoolInterface> pageResult = schoolRepository.findBy(specification, q -> q.as(SchoolInterface.class));
When projection target is Interface, it works well.
But error occurred when I change the projection target to DTOs(normal class or record type)
java.lang.UnsupportedOperationException: Class-based DTOs are not yet supported.
I hope to know why must use interface.
The text was updated successfully, but these errors were encountered:
likely to be closed by #3654
Sorry, something went wrong.
Duplicate of #2327
Successfully merging a pull request may close this issue.
springboot version: v3.3.7-SNAPSHOT
When projection target is Interface, it works well.
But error occurred when I change the projection target to DTOs(normal class or record type)
java.lang.UnsupportedOperationException: Class-based DTOs are not yet supported.
I hope to know why must use interface.
The text was updated successfully, but these errors were encountered: