Created
October 10, 2017 13:59
Hateoas-City
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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