spring-data-jpa-datatables-sample
spring-data-jpa-datatables-sample copied to clipboard
Sample Spring Boot project using https://github.com/darrachequesne/spring-data-jpa-datatables
public class Employee { @Id private int id; private String firstName; @ManyToMany(cascade = CascadeType.ALL) @JoinColumn(name = "id_office") private Set office = new HashSet(); } class Office { @Id @GeneratedValue private...
I added the enum example to the employee class. See https://github.com/darrachequesne/spring-data-jpa-datatables/issues/136
I saw that the version was updated to 5.1 and decided to upgrade. It's great that the search bar support has been added, thanks a lot for removing a bunch...