Skip to content

Instantly share code, notes, and snippets.

@mohitsinha
Created October 10, 2017 13:59
Hateoas-City
@Data
@Entity
@NoArgsConstructor
@RestResource
@FieldDefaults(level = AccessLevel.PRIVATE)
public class City {
@GeneratedValue
@Id Long id;
String name;
@ManyToOne Country country;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment