Background, literature, problem, method, and interests were not being saved due to explicitly having been marked as "do not save".
This commit is contained in:
parent
ff4c5b58b4
commit
65f78da033
@ -105,11 +105,11 @@ public class Idea extends DomainObject {
|
||||
|
||||
@Embedded
|
||||
@AttributeOverrides({
|
||||
@AttributeOverride(name = "literature", column = @Column(name = "literature", insertable = false, updatable = false)),
|
||||
@AttributeOverride(name = "background", column = @Column(name = "background", insertable = false, updatable = false)),
|
||||
@AttributeOverride(name = "problem", column = @Column(name = "problem", insertable = false, updatable = false)),
|
||||
@AttributeOverride(name = "method", column = @Column(name = "method", insertable = false, updatable = false)),
|
||||
@AttributeOverride(name = "interests", column = @Column(name = "interests", insertable = false, updatable = false))
|
||||
@AttributeOverride(name = "literature", column = @Column(name = "literature")),
|
||||
@AttributeOverride(name = "background", column = @Column(name = "background")),
|
||||
@AttributeOverride(name = "problem", column = @Column(name = "problem")),
|
||||
@AttributeOverride(name = "method", column = @Column(name = "method")),
|
||||
@AttributeOverride(name = "interests", column = @Column(name = "interests"))
|
||||
})
|
||||
private TholanderBox tholanderBox = new TholanderBox();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user