第一步 创建数据库
-- Create table
create table CUSTOMER
(
ID NUMBER not null,
USERNAME VARCHAR2(100),
AGE NUMBER,
SEX VARCHAR2(100),
CITY VARCHAR2(100)
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64
minextents 1
maxextents unlimited
);
第二步 建工程 导包 创建实体类
在myeclipse中创建一个web工程,将hibernate所需要的所有jar包导入到web工程的lib包下
创建Book类:
package com.lidongyu;
public class Customer {
private int id;
private String username;
private int age;
private String sex;
private String city;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.usernam