You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. I use spring data jdbc and 'infobip-spring-data-querydsl:7.2.0' (also, infobip-spring-data-jdbc-annotation-processor.)
When i generate Q class, most of entities are created well. But, Entities with @table( name = "somthing") annotation, Q class's constructor generated like this.
public QSlotGroup(String variable) {
super(SlotGroup.class, forVariable(variable), null, "");
addMetadata();
}
In spring data jdbc java doc, Annotation Type 'Table' has two Optional Elements, 'name' and 'value'.
those two elements are the same description "The mapping table name."
Hi. I use spring data jdbc and 'infobip-spring-data-querydsl:7.2.0' (also, infobip-spring-data-jdbc-annotation-processor.)
When i generate Q class, most of entities are created well. But, Entities with @table( name = "somthing") annotation, Q class's constructor generated like this.
As you see, table name Field fill with "".
@Table(name = "slot_group") -> @Table("slot_group")
I solved it by changing it like this, but I think there may be other solutions or improvements, so I'm writing this issue.
The text was updated successfully, but these errors were encountered: