Skip to main content

Question list filters

Filter by
Sorted by
Tagged with
Score of 1
0 answers
44 views

I wonder what is the reason of ignoring default methods when getting descriptors for DefaultProjectionInformation I'm using spring-data-mongodb. When I try to execute a query with projection: // ...
Score of 1
1 answer
1912 views

I was using Spring Boot 2.x and with Spring Data SOLR 4.3.12 and Spring Data Commons 2.7.14, my app works normally connecting and querying SOLR. I upgraded Spring Boot to 3.1.2 and spring Data SOLR 4....
Score of 0
1 answer
56 views

What is the access order of PersistentPropertys when iterating over them? Is it the same as in the definition of PersistentEntity, or is it random? I couldn't find any information about this in the ...
Score of 0
0 answers
217 views

I am trying to upgrade spring-boot from 2.3.7 to 2.5.8 and seeing the below error in one of the SpringBootTest java.lang.IllegalStateException: Failed to load ApplicationContext at org....
Score of 1
0 answers
347 views

I am in the processing of upgrading spring-data-jpa and spring-data-commons dependencies. Currently, ModuleA uses 1.8.0.RELEASE of data-jpa (which internally uses 1.10.0.RELEASE of jpa-commons. ...
Score of 1
0 answers
1494 views

after upgrading spring boot version to 2.6.6 and spring data commons version to 2.6.4. seeing this error. Caused by: java.lang.ClassNotFoundException: org.springframework.data.support....
Score of 0
1 answer
930 views

Let’s say I have a table like this @Table(value = "myTable") public class MyRow { private UUID id; // primary key private String state; } I have a query that updates a row based ...
Score of 0
1 answer
515 views

I am trying to define the following sort criteria: TypedSort<Task> typedSort = Sort.sort(Task.class); Sort typedSortCriteria = typedSort.by(task -> task.getAssignee().getLastName()) ....
Score of 0
0 answers
859 views

My data consists of strings that can be numbers or strings ("12" should be seen as a number while "12REF" should be seen as a string). I am looking to implement an order by in my ...
Score of 1
0 answers
369 views

After upgrading project spring boot from 2.0.5.RELEASE to 2.1.18.RELEASE and spring framework from 5.0.9.RELEASE to 5.1.20.RELEASE the application got UnsatisfiedDependencyException on boot run: "...
Score of 0
0 answers
328 views

I am trying to migrate my application from spring boot 2.2.6 to 2.3.6. This update also updates the spring-data-couchbase 3.2.6 to 4.0.2. Earlier version was throwing OptimisticLockingFailureException ...
Score of 1
1 answer
818 views

I'm using Predicate from QueryDsl. Backends internally uses camelCase, but promised to use snake_case when communicating with clients. I want to use snake_case as query parameters like http://...
Score of 0
1 answer
122 views

My project contains a lot libraries and I want update following: spring from 5.0.10.RELASE to 5.3.18 or higher spring-content spring-core spring-beans spring-aop spring-context-support spring-orm ...
Score of 0
0 answers
439 views

I am working on Spring Boot migration from 1.5.12 to 2.1.14. We are using Gradle as a build tool, so as part of Spring Boot migration we had to change Gradle from 3.x to 4.x and trying to update the ...
Score of 4
2 answers
3682 views

I understand that for the current version(2.x.x) of spring-data-commons it is guaranteed that the return value of CrudRepository.save() will never be null. However, what about the older versions, ...

15 30 50 per page