MyeongHyeonLee opened DATAJDBC-465 and commented
When loading data with the Constructor, an Exception is thrown if the @Transient property exists.
The @Transient property value can be set to null.
@AllArgsConstructor
public class DummyEntity {
@Id
private Long id;
private String name;
@Transient
private String temp;
}
Affects: 1.1.3 (Moore SR3)
Referenced from: pull request #185