I'm busy playing with Spring Fu and ran into probl...
# spring
c
I'm busy playing with Spring Fu and ran into problem. I have a project https://github.com/corneil/reactive-spring-5 with multiple sub project. It was initially done to illustrate Spring 5 Reactive support and has non-reactive web project as well. I recently added a reactive Kotlin version and then started the spring-fu version. The mongo template doesn't seem to load responses even though the queries are the same.
Copy code
2018-07-21 13:56:36.112  DEBUG --- [ctor-http-nio-2] o.s.d.m.core.ReactiveMongoTemplate       : find using query: { "timestamp" : { "$gte" : { "$date" : 1529582195915 }, "$lte" : { "$date" : 1532174195915 } } } fields: Document{{}} for class: class com.github.corneil.model.LocationHistory in collection: location_history
Copy code
2018-07-21 13:59:42.289 DEBUG 1748 --- [ctor-http-nio-2] o.s.d.m.r.query.MongoQueryCreator        : Created query Query: { "timestamp" : { "$gt" : { "$date" : 1529582382262 }, "$lt" : { "$date" : 1532174382261 } } }, Fields: { }, Sort: { }
2018-07-21 13:59:42.298 DEBUG 1748 --- [ctor-http-nio-2] o.s.d.m.core.ReactiveMongoTemplate       : find using query: { "timestamp" : { "$gt" : { "$date" : 1529582382262 }, "$lt" : { "$date" : 1532174382261 } } } fields: Document{{}} for class: class com.github.corneil.model.LocationHistory in collection: location_history