“@embeddedid” Código de respuesta

@embeddedid

@Embeddable
public class BookId implements Serializable {

    private String author;
    private String name;

    // standard getters and setters
}
Prickly Peafowl

@embeddedid

@Entity
public class Book {

    @EmbeddedId
    private BookId id;
    private String genre;
    private Integer price;

    //standard getters and setters
}
Prickly Peafowl

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código