在我的春季启动项目中,我有一个实体
@Field
private org.joda.time.DateTime date;
在我的CouchbaseRepository中,我进行了以下查询:
@Query("#{#n1ql.selectEntity} WHERE email= $1 AND date=$2")
List<Week> findByEmailAndDate(String email, DateTime date);
当我运行我的项目时,我收到此错误:
There was an unexpected error (type=Internal Server Error, status=500).
Unsupported type for JsonArray: class org.joda.time.DateTime
我试图转而使用java.util.Date,但我遇到了同样的问题。我不知道这是春天问题还是沙发基地问题。
我还应该提一下,日期存储在我的couchbase文档中作为时间戳: 1499641200000。
提前感谢您提供的任何帮助。