Mercurial > hg > SpringPlayground
view spring-boot-playground/src/main/java/de/comline/spring/entity/Movie.java @ 14:4594ff529ab1
Noch ein Test ganz ohne Spring hinzugefuegt.
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Mon, 17 Aug 2020 14:39:26 +0200 |
parents | 7ce4367b50bc |
children |
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 long getId() { return id; } public String getTitle() { return title; } }