Home
Random
Nearby
Log in
Settings
Donate Now
If Wikipedia is useful to you, please give today.
About Wikipedia
Disclaimers
Search
Jakarta Persistence Query Language: Difference between revisions
Article
Talk
Language
Watch
View history
Edit
Browse history interactively
← Previous edit
Next edit →
Content deleted
Content added
Visual
Wikitext
Revision as of 09:38, 9 October 2012
edit
183.82.123.104
(
talk
)
→
Examples
← Previous edit
Revision as of 09:39, 9 October 2012
edit
undo
183.82.123.104
(
talk
)
→
Examples
Next edit →
Line 30:
@
@Entity
public class Book {
@Id
private Integer id;
private String title;
private String isbn;
@ManyToOne
private Publisher publisher;
@ManyToMany
private List<Author> authors;
}
@Entity
public class Publisher {