Closed
Description
Michael Simons opened DATAGRAPH-1201 and commented
See attached reproducer.
@NodeEntity
public class Blub {
@Id
@GeneratedValue
private Long id;
private final String name;
public Blub(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
fails to be save correctly, name
is always null.
If you remove the final
, than everything is ok.
Affects: 5.1.5 (Lovelace SR5)
Attachments:
- demo.zip (86.22 kB)