Skip to content

Instantly share code, notes, and snippets.

View konstantinx's full-sized avatar

Konstantin konstantinx

View GitHub Profile
@konstantinx
konstantinx / Tag
Created November 2, 2017 08:45
Duplicate spring jpa
@Entity(name = "Tag")
@Table(name = "tag")
public class Tag {
@Id
@GeneratedValue
private Long id;
private String name;