blaze-persistence
blaze-persistence copied to clipboard
Rich Criteria API for JPA providers
In 1.7 we will switch to JDK 11 for building, yet we will still require JDK 8 for releases. This will allow us to remove some Maven profiles. Also, consider...
Maintaining a bunch of integrations for various major/minor versions of libraries is not viable in the long run. Given that many library versions that we still support are not maintained...
### Invalid generated entity view classes ### Description When using abstract classes instead of interfaces as entity views, the annotation processor generates unexpected classes like `BlazeDomainObjectIdentified_com_example_demo_dated_BlazeDatedObjectIdentified` and generic type ROOT...
### Description We have an entity that has a few Formulas in it. When performing a group by, Blaze adds the formulas into the group by which makes these queries...
Although there are a lot of (reasonable) restrictions on creatable EVs, a requirement on the presence of setters for all entity properties is not among them for some reason. That...
I don't have a simple reproducer for this but the situation is roughly following: - EV A contains (possibly deeply nested) a collection of EV B which has `@EntityViewInheritance` defined...
### Setup Entity model: ``` @Entity @Inheritance(strategy = InheritanceType.SINGLE_TABLE) class Child { @Id @GeneratedValue var id: Long? = null var name: String? // NOTE: it's nullable } class Boy :...
Currently we only support java based Create/Update views in the `com.blazebit.persistence.integration.graphql.dgs.mapper.EntityViewInputObjectMapper`since `mapToKotlinObject` does just call the super implementation without handling entity views. We should add support for kotlin based create/update...
## Description As suggested, I added test methods showing the issue reported in #1710. This is just the tests, no fix. ## Related Issue #1710
After we merged #1699 this would be a potential feature to follow up, if there is demand. https://docs.spring.io/spring-data/commons/docs/current/reference/html/#repositories.single-repository-behavior This will require us to properly implement - is this something we...