Mercurial > hg > SpringPlayground
view spring-boot-playground/src/main/java/de/comline/spring/entity/Movie.java @ 7:0c3494137a82
Starte eine H2 web console auf port 8081 fuer besseres DB debugging.
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Thu, 13 Aug 2020 16:28:20 +0200 |
parents | 92d52e4ac567 |
children | 7ce4367b50bc |
line wrap: on
line source
package de.comline.spring.entity; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name = "MOVIE") public class Movie { @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name = "ID") private long id; @Column(name = "TITLE") private String title; /** * This default constructor is required for hibernate but should not be used from client code. */ @Deprecated protected Movie() { super(); } public Movie(String title) { this.title = title; } public String getTitle() { return title; } }