-
Notifications
You must be signed in to change notification settings - Fork 345
New issue
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
Spring Data JDBC - Support fetching MappedCollections with a filter #1784
Comments
We discussed this internally. Are inclined to accept such a PR. Could you layout, how the annotation would look like. I expect it would contain some SQL-snippet String? |
Thanks for your response @schauder and the others on the team. Here is my first draft for the new annotations for Spring Data JDBC. They are conceptually very similar to the FilterDef and Filter annotations used in Hibernate. Here are the proposed annotations, keeping the naming convention close to that of Hibernate to provide familiarity to developers who have used Hibernate, although we should consider the potential for confusion this might cause: As you may notice I left out the Proposed Annotations
|
If child entities can inject custom filtering conditions, why not give the same mechanism to the aggregate root? Combined with the existing SpEL mechanism, this can also achieve multi-tenancy in the shared mode. |
These are some of my ideas, which directly provide the highest flexibility. Soft deletion and shared mode multi-tenancy and some other possible requirements are based on some conditions to add sql condition fragments at the end. It is better to directly provide such an extension mechanism. The automatic implementation method of the repository will complete the sql fragment internally. The @query annotation type directly uses the placeholder replacement method to reduce the sql parsing. Since I currently know very little about the implementation of data, this solution only provides an angle for the data team to evaluate the feasibility. At present, our team uses data-jdbc in new projects, and it is indeed difficult to get started with shared mode multi-tenancy. If you are interested in this idea, please reply and communicate further. /**
* If the support parameter is met, run the filter to return the WHERE condition fragment of the SQL
*
* @param <E> entity class
*/
public interface ConditionFilter<E> {
/**
* filter pre judgment
*
* @param eClass entity class
* @param methodHandle repo method
* @return whether to use filter or not
*/
boolean support(Class<E> eClass, MethodHandle methodHandle);
/**
* return WHERE condition fragment of the SQL
*
* @param eClass entity class
* @param entity real entity object
* @param methodHandle repo method
* @param parameters repo method parameters
* @return WHERE condition fragment of the SQL
*/
String filter(Class<E> eClass, Object entity, MethodHandle methodHandle, Object[] parameters);
}
public interface XxRepo {
// %filter is ConditionFilter placeholders
@Query("select * from x_x where name = :name and %filter")
Optional<Object> findByName(String name);
} |
@DreamStar92 Thanks for thoughts on this matter. Your proposal seems to me like a simple and flexible solution for many problems that reuses existing mechanisms. While I must admit that I'm not sure if I fully grasped your suggestion. This issue is about how Let's take your Repository and modify it a bit:
Let's also assume that the fetched Model has some external data:
If no custom @DreamStar92 did I get it right or did I miss something? |
When your query result is an aggregate root, data-jdbc will load the sub-entities for you. The generation of SQL corresponding to this sub-entity also goes through ConditionFilter. The method parameters of ConditionFilter can be designed according to the actual situation. The purpose of this solution is to programmatically decide under what circumstances to add conditions. Let’s take an example of a process. public interface XxRepo {
// %filter is ConditionFilter placeholders
@Query("select * from x_x where name = :name and %filter")
Optional<SomeModel> findByName(String name);
}
class SomeModel {
...
@MappedCollection(idColumn = "...", keyColumn = "...")
private Collection<SomeOtherModel> someOtherModels = Collections.emptyList();
} First, ConditionFilter will run support to receive the MethodHandler and SomeModelClass of findByName and then execute filter to obtain the corresponding sql fragment. Because this findByName is @query, we use placeholder replacement to spell in the condition, so that the sql statement of the aggregate root is completed. Next, data-jdbc will query the corresponding subentity for the result. At this time, the support method of ConditionFilter will receive MethodHandler and SomeOtherModelClass. At this step, we can control whether ConditionFilter is applied to subentity loading. If so, the next filter The returned fragments will be spliced internally by data-jdbc (which itself should be similar to @Version's mechanism). The placeholder is just to reduce SQL parsing when the user provides SQL. When generating SQL internally in data-jdbc, it can be easily spliced. @appreciated I don’t know if my description is clear enough? Your further responses are welcome. |
@appreciated @schauder What do you (your team) think? |
@DreamStar92 I did not have the time yet to dig into the Spring Data JDBC source code. So currently I cannot answer this. |
Hi we had some discussion on the matter and concluded, that we need some more thinking time, since a feature like this will have quite a ripple effect. Vacation time is coming up, so it will take some time until we can cast a verdict how we want to proceed. |
Summary
In the current project I am working, I have encountered an issue with the lack of built-in support for
MappedCollections
used in conjunction with soft-delete functionality in Spring Data JDBC. The potential solutions discussed in the StackOverflow thread linked below seem to require a potential high maintenance effort when upgrading to new versions of Spring Data JDBC.Note:
I have previously discussed this issue with @schauder and was advised to create this issue.
Abstract Goal
To add support for filtering
MappedCollections
in Spring Data JDBC, which would allow for more dynamic and controlled data handling, similar to the capabilities provided by Hibernate's@Filter
annotation.Research
As already mentioned, I found a relevant discussion on StackOverflow outlining several potential solutions (StackOverflow Discussion).
Proposed Action
I would like to offer to create a pull request to integrate this functionality into Spring Data JDBC. My preference is for a declarative method akin to Hibernate's
@Filter
annotation, but I am open to suggestions and willing to explore other viable options.Next Steps
The text was updated successfully, but these errors were encountered: