https://spring.io/guides/tutorials/rest/
Код: Выделить всё
package payroll;
import java.util.Objects;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity
class Employee {
private @Id @GeneratedValue Long id;
private String name;
private String role;

Подробнее здесь: https://stackoverflow.com/questions/682 ... n-intellij
Мобильная версия