[TOC]
# 下载Hibernate5
https://sourceforge.net/projects/hibernate/files/hibernate-orm/5.0.7.Final/
解压完后,目录结构如下
![](https://box.kancloud.cn/6f287f4b281b90eab11799208d2a8be4_504x392.png)
![](https://box.kancloud.cn/6642082f3d4b5c3fcb124f74c539b12f_1664x404.png)
包含的都是必要的jar包
# 引入Hibernate包
![](https://box.kancloud.cn/6e74f9da1e4d65c1196fcbfe0c300a50_708x1076.png)
# 准备表
~~~
CREATE table `cst_customer` (
`cust_id` bigint(32) not null auto_increment comment '客户编号(主键)',
`cust_name` varchar(32) not null comment '客户名称(公司名称)',
`cust_source` varchar(32) default null comment '客户信息来源',
`cust_industry` varchar(32) default null comment '客户所属行业',
`cust_level` varchar(32) default null comment '客户级别',
`cust_phone` varchar(64) default null comment '固定电话',
`cust_mobile` varchar(16) default null comment '移动电话',
primary key(`cust_id`)
) engine=Innodb AUTO_INCREMENT=1 default charset=utf8;
~~~
在项目src下,创建domain包,并在包下创建实体类Customer(对应数据库cst_customer),Customer类包含与cst_customer数据表字段对应的属性,已经setXX,getXX方法
~~~
package domain;
public class Customer {
private Long cust_id;
private String cust_name;
private String cust_source;
private String cust_industry;
private String cust_level;
private String cust_phone;
private String cust_mobile;
public Long getCust_id() {
return cust_id;
}
public void setCust_id(Long cust_id) {
this.cust_id = cust_id;
}
public String getCust_name() {
return cust_name;
}
public void setCust_name(String cust_name) {
this.cust_name = cust_name;
}
public String getCust_source() {
return cust_source;
}
public void setCust_source(String cust_source) {
this.cust_source = cust_source;
}
public String getCust_industry() {
return cust_industry;
}
public void setCust_industry(String cust_industry) {
this.cust_industry = cust_industry;
}
public String getCust_level() {
return cust_level;
}
public void setCust_level(String cust_level) {
this.cust_level = cust_level;
}
public String getCust_phone() {
return cust_phone;
}
public void setCust_phone(String cust_phone) {
this.cust_phone = cust_phone;
}
public String getCust_mobile() {
return cust_mobile;
}
public void setCust_mobile(String cust_mobile) {
this.cust_mobile = cust_mobile;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((cust_id == null) ? 0 : cust_id.hashCode());
result = prime * result + ((cust_industry == null) ? 0 : cust_industry.hashCode());
result = prime * result + ((cust_level == null) ? 0 : cust_level.hashCode());
result = prime * result + ((cust_mobile == null) ? 0 : cust_mobile.hashCode());
result = prime * result + ((cust_name == null) ? 0 : cust_name.hashCode());
result = prime * result + ((cust_phone == null) ? 0 : cust_phone.hashCode());
result = prime * result + ((cust_source == null) ? 0 : cust_source.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Customer other = (Customer) obj;
if (cust_id == null) {
if (other.cust_id != null)
return false;
} else if (!cust_id.equals(other.cust_id))
return false;
if (cust_industry == null) {
if (other.cust_industry != null)
return false;
} else if (!cust_industry.equals(other.cust_industry))
return false;
if (cust_level == null) {
if (other.cust_level != null)
return false;
} else if (!cust_level.equals(other.cust_level))
return false;
if (cust_mobile == null) {
if (other.cust_mobile != null)
return false;
} else if (!cust_mobile.equals(other.cust_mobile))
return false;
if (cust_name == null) {
if (other.cust_name != null)
return false;
} else if (!cust_name.equals(other.cust_name))
return false;
if (cust_phone == null) {
if (other.cust_phone != null)
return false;
} else if (!cust_phone.equals(other.cust_phone))
return false;
if (cust_source == null) {
if (other.cust_source != null)
return false;
} else if (!cust_source.equals(other.cust_source))
return false;
return true;
}
@Override
public String toString() {
return "Customer [cust_id=" + cust_id + ", cust_name=" + cust_name + ", cust_source=" + cust_source
+ ", cust_industry=" + cust_industry + ", cust_level=" + cust_level + ", cust_phone=" + cust_phone
+ ", cust_mobile=" + cust_mobile + "]";
}
}
~~~
- 基础
- 编译和安装
- scanner类(键盘录入)
- Random类(随机数)
- 数组
- 方法
- 类
- ArrayList集合
- char与int
- eclipse
- IDEA
- 变量与常量
- 常用API
- String,StringBuffer,StringBuilder
- 正则,Date,DateFormat,Calendar
- 包装类,System,Math,Arrays,BigInteger,BigDecimal
- 集合,迭代器,增强for,泛型
- List,set,判断集合唯一
- map,Entry,HashMap,Collections
- 异常
- IO
- File
- 递归
- 字节流
- 字符流
- IO流分类
- 转换流
- 缓冲流
- 流的操作规律
- properties
- 序列化流与反序列化流
- 打印流
- commons-IO
- IO流总结
- 多线程
- 线程池
- 线程安全
- 线程同步
- 死锁
- lock接口
- ThreadLoad
- 等待唤醒机制
- 线程状态
- jdbc
- DBUtils
- 连接池DBCP
- c3p0连接池
- 网络编程
- 多线程socket上传图片
- 反射
- xml
- 设计模式
- 装饰器模式
- web service
- tomcat
- Servlet
- response
- request
- session和cookie
- JSP
- EL
- JSTL
- 事务
- 监听器Listener
- 过滤器Filter
- json
- linux安装软件
- 反射详解
- 类加载器和注解
- 动态代理
- jedis
- Hibernate
- 简介
- 创建映射文件
- Hibernate核心配置文件
- 事务和增删改查
- HibernateUtils
- 持久化对象的三种状态
- 检索方式
- query
- Criteria
- SQLQuery
- 持久化类
- 主键生成策略
- 缓存
- 事务管理
- 关系映射
- 注解
- 优化
- struts2
- 搭建
- 配置详解
- Action
- 结果跳转方式
- 访问ServletAPI方式
- 如何获得参数
- OGNL表达式
- valueStack 值栈
- Interceptor拦截器
- spring
- 导包
- IOC和DI
- Bean获取与实例化
- Bean属性注入
- spring注解
- 注解分层
- junit整合
- aop
- 动态代理实现
- cglib代理实现
- aop名词
- spring的aop
- aop-xml详解
- aop-注解详解
- 代理方式选择
- jdbcTemplate
- spring事务管理
- 回滚注意
- 事务传播属性
- MyBatis
- MyBatis简介
- 入门程序
- 与jdbc hibernate不同
- 原始Dao开发
- Mapper动态代理方式
- SqlMapConfig.xml配置文件
- 输入参数pojo包装类
- resultMap
- 动态sql
- 一对一关联
- 一对多
- 整合spring
- 逆向工程
- maven
- maven简介
- 仓库
- maven目录结构
- maven常用命令
- 生命周期
- eclipse中maven插件
- 入门程序
- 整合struct
- 依赖范围
- 添加插件
- idea配置
- jar包冲突
- 分模块开发
- 构建可执行的jar包(包含依赖jar包)
- springMVC
- 处理流程
- java面试
- java版本升级
- java1-8版本变更
- java9新特性
- 锁
- java资料
- idea
- jdk版本切换
- log4j
- 入门实例
- 基本使用方法
- Web中使用Log4j
- spring中使用log4j
- java代码优化