**[MyeongHyeonLee](https://jira.spring.io/secure/ViewProfile.jspa?name=myeonghyeonlee)** opened **[DATAJDBC-465](https://jira.spring.io/browse/DATAJDBC-465?redirect=false)** 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. ```java @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 https://github.com/spring-projects/spring-data-jdbc/pull/185