belovaf
belovaf
## Expected Behavior Fetched relations always have correctly loaded id. ## Current Behavior id = "null" in all *ToOne(fetch=LAZY) relations when using field access type. For example Elide response is:...
Hello! We deploy Elide on JEE container and we have 2 problems: `JsonApiEndpoint` class has no default constructor, so it can't be instantiated by container with auto scanning. We should...
GraphQL endpoint supports very useful feature: UPSERT operation. Do you planning to support same operation for Json-API? Example: ``` [ { "op": "addOrReplace", "path": "/author", "value": { "id": "12345678-1234-1234-1234-1234567890ab", "type":...
Elide doesn't count @Version as a special field and just overrides it from patch request (RecordTerminalState#patch method). This behavior violates hibernate contract (only the persistence provider is permitted to set...
Ebean perfectly supports fetching partial entities. But it feels very error prone to return a partially loaded object for further processing. Someone can accidentally access unloaded field and trigger lazy...
Current `ZookeeperLoadBalancerConfiguration` implementation caches service instances for 35 seconds by default. If any instance get down in this period we will load balance on it anyway. Of course, we can...
**Expected Behavior** Permission#getMask() returns long. **Current Behavior** Permission#getMask() returns int. **Context** In our project we have very complex security restrictions. We have a lot of tiny permissions (1 bit for...
### Description Sometimes I need an entity view only for optimistic locking, because other changes are made by criteria queries. ``` @Entity class MyEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) val...
More information can be seen in discussion [1822](https://github.com/Blazebit/blaze-persistence/discussions/1822) When I convert some small updatable view to a larger one with additional collection property, I'm getting and object with uninitialized collection...
More information can be seen in discussion [1822](https://github.com/Blazebit/blaze-persistence/discussions/1822) Sometimes when I update an entity I don't care of its previous field values. In such cases it would be great if...