Mercurial > hg > SpringPlayground
view spring-boot-playground/src/main/java/de/comline/spring/entity/Movie.java @ 17:a9675808f1dd
Triggern der exception je nach Payload
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Thu, 10 Sep 2020 11:18:13 +0200 (2020-09-10) |
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; } }