- 浏览: 1815 次
- 性别:
- 来自: 杭州
最新评论
文章列表
在hibernate.cfg.xml中添加c3p0配置。
<property name="hibernate.c3p0.max_size">10</property> 最大连接数<property name="hibernate.c3p0.min_size">4</property> 最小连接数<property name="hibernate.c3p0.acquire_increment">2</property> 一次增加多少连接数<prop ...
最近在看视频学习hibernate,打算写一系列的博客,作为对学习的总结和回顾。
使用hibernate的几个步骤。
1.导入hibernate jar包和mysql jar包。
2.创建hibernate.cfg.xml配置文件。
a.数据库连接配置
b.hibernate属性配置
c.hbm.xml文件关联
3.创建实体类。
4.创建实体类的 hbm.xml对应文件。
5.使用hibernate api来保存对象。
Configuration configuration = new Configuration().configure ...
BufferedReader br = new BufferedReader(new FileReader("data.txt");
String s = null;
while((s = br.readLine()) != null){
System.out.println(s);
}
PrintWriter pw = new PrintWriter(new FileWriter("data.txt"));
pw.write("helloworld");
pw.close();