Spring Projects Issues
Spring Projects Issues
**[Ilya Zinkevich](https://jira.spring.io/secure/ViewProfile.jspa?name=busotir)** commented Correct logs look: ``` 2019-10-24 19:44:15,472 [ qtp192486017-26 ] DEBUG [ o.s.d.m.c.MongoTemplate:2430 ] find using query: { "$or" : [{ "$or" : [{ "_id" : { "$oid"...
**[Ilya Zinkevich](https://jira.spring.io/secure/ViewProfile.jspa?name=busotir)** commented Incorrect case logs: ``` 2019-10-24 19:46:31,500 [ qtp1709700394-23 ] DEBUG [ o.s.d.m.c.MongoTemplate:2430 ] find using query: { "$or" : [{ "$or" : [{ "_id" : { "$oid"...
**[Ilya Zinkevich](https://jira.spring.io/secure/ViewProfile.jspa?name=busotir)** commented ```java @Document public interface Call { ``` ```java public class TokBoxCall implements Call { ``` Maybe it helps in invvestigations: only interface is marked with annotation Document
**[Robert Zilke](https://jira.spring.io/secure/ViewProfile.jspa?name=robeatoz)** commented I had the same issue. The following code solved my problem: ```java import org.bson.Document; import org.springframework.core.convert.converter.Converter; import org.springframework.data.convert.ReadingConverter; ``` ```java @ReadingConverter public class CallReadingConverter implements Converter {...
**[provirus](https://jira.spring.io/secure/ViewProfile.jspa?name=provirus)** commented I debugged and found this logic: ``` MappingMongoConverter.writeProperties is going through all the properties when is a class -> writePropertyInternal which considers it as an entity = BasicMongoPersistentEntity...
**[Christoph Strobl](https://jira.spring.io/secure/ViewProfile.jspa?name=cstrobl)** commented This behaviour has been the same since the early days of Spring Data MongoDB. Therefore a change would certainly affect many existing applications. Please use the `@Field`...
**[provirus](https://jira.spring.io/secure/ViewProfile.jspa?name=provirus)** commented Hi, I cannot use `@Field` in the child since the child is a normal POJO from a separate project that doesn't have any Spring dependencies. I know that...
**[GT](https://jira.spring.io/secure/ViewProfile.jspa?name=gt_tech)** commented I figured a way around it by closely looking at source, by aliasing the original binder returned and then adding the binding. It worked ok! Issue can be...
**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented The Couchbase driver is based on RxJava1 and so does the reactive Template. You have two options to obtain a `Publisher` (`Flux`/`Mono`): 1. Declare a query method...
**[Nilesh Mevada](https://jira.spring.io/secure/ViewProfile.jspa?name=nileshmmevada)** commented Works like a charm! Thanks a lot Mark. Note for me: I should do some better googling before I put a task in here. :)