Код: Выделить всё
public interface MyRepository extends JpaRepository { }
@Entity
@Data
public class MyEntity {
@Id
String id;
String foo;
@JsonProperty("BAR")
String bar;
@JsonProperty("Baz")
String baz;
}
- http://localhost:8080/api/myEntities?pa ... 0&sort=foo
- http://localhost:8080/api/myEntities?pa ... 0&sort=BAR
Подробнее здесь: https://stackoverflow.com/questions/798 ... is-upperca