开发环境:
MyEclipse Blue Edition 版本为 6.5.0.Blue Milestone-1
MySQL 5.0版
Struts 1.2版
Spring 2.0版
Hibernate 3.1版
在上一次 (第一次整合网址:http://www.blogjava.net/zhangsenwei/archive/2008/06/23/210083.html) 的开发基础之上,这次我们对上次整合后的SSH框架进行一下系统提升,这次的提升主要对框架进行了以下3处的完善
(1)建立公共函数类
(2)加入DAO适配器
(3)加入事务和******
1、在com.address.hibernate.dao 包中新建一个接口,接口的名字为 IAddressDAO,具体代码如下:
package com.address.hibernate.dao;
import java.util.List;
import com.address.hibernate.beans.Linkman;
