Last active
April 24, 2019 12:50
-
-
Save vjrngn/8b70fa975d225dbc853aed2302608e3f to your computer and use it in GitHub Desktop.
A simple model class using JPA
This file contains hidden or 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
package com.example.demo; | |
import javax.persistence.*; | |
@Entity | |
@Table(name = "books") | |
public class Book { | |
@Id | |
int id; | |
public Book() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment