spring-data-rest: query giving “Unparseable date” when query param matches @DateTimeFormat
问题 I am developing a spring-boot REST server using spring-boot-starter-data-jpa-1.5.2.RELEASE. I have the following POJO class hierarchy. First the base class Entity: @javax.persistence.Entity @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) public abstract class Entity implements Serializable { @Id @Column(name = "id", nullable = false, length = 48) public String id = UNINITIALIZED_ID; /** * The timestamp for when this entity was last updated. */ @Column(columnDefinition = "timestamp