Quantcast
Channel: Coffeewithcode.com
Viewing all articles
Browse latest Browse all 40

Hibernate Hello World Example With XML Mapping

$
0
0
This article is about hibernate practical example. Below is an example of hibernate with my sql using hibernate mapping files. Here is the Student bean class with id and name properties. package beans; public class Student  { private long id;private String name; /*** getters and setters* @return*/public long getId() {return id;}public void setId(long id) {this.id = id;}public String getName() {return […]

Viewing all articles
Browse latest Browse all 40

Trending Articles