Skip to content

Instantly share code, notes, and snippets.

@vjrngn
Last active April 24, 2019 12:50
Show Gist options
  • Save vjrngn/8b70fa975d225dbc853aed2302608e3f to your computer and use it in GitHub Desktop.
Save vjrngn/8b70fa975d225dbc853aed2302608e3f to your computer and use it in GitHub Desktop.
A simple model class using JPA
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