You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For most use cases ListCrudRepository and ListPagingAndSortingRepository are preferable.
It would be nice to have a rule that could enable that.
I would also be happy to contribute to that, but would need a bit of pointers on how best to achieve it 😅
My skill level on archunit is not good enough to get past the problem that ListCrudRepository extends CrudRepository ....
The text was updated successfully, but these errors were encountered:
I'll have to think about whether and how this rule can be formulated in a general way. With JPA, it makes sense to define it this way. In the reactive world, the Iterable variants make more sense.
Yep, I definitely get that that there are instances where the Iterable variants are sensible.
I can see this type of problem becoming a fairly common thing (within the context of this type of library).
I had a thought about using the Spring conditionalOn / autoConfiguration ecosystem to help trying to detect when a set of tests should run ... until I realised that would in essence mean runinng a SpringBootTest just to decide which tests to run 😵💫
Having enough of these tests that you can start worrying about those kinds of problems would be a nice problem to have in and of itself 😁
For most use cases
ListCrudRepository
andListPagingAndSortingRepository
are preferable.It would be nice to have a rule that could enable that.
I would also be happy to contribute to that, but would need a bit of pointers on how best to achieve it 😅
My skill level on archunit is not good enough to get past the problem that ListCrudRepository extends CrudRepository ....
The text was updated successfully, but these errors were encountered: