fantasy-java
我越发的感觉到你就是我生命中的精灵,翻转跳跃在我那空虚的时空;有人说世界上最美的是春天和爱情,在我眼中有你的地方就是最美的。
BlogJava
首页
新随笔
联系
聚合
管理
随笔-95 评论-31 文章-10 trackbacks-0
小结
1、使用hibernate生成主键方式的时候,注意别的应用程序是否同时操作一张表,如果别的应用程序使用max+1手工生成主键,那么本应用程序hibernate配置sequence的主键策略,就有可能和现有程序操作表发生违反主键约束的异常。需要主键生成方式一致就不会有问题。
2、hibernate配置多数据库源,多个就配置多个数据库连接即有多个*.hbm.xml文件,还有如何动态配置oracle表空间名字,代码如下:
1
public
synchronized
static
Session getSession(String database)
{
2
Session session
=
null
;
3
if
(identify_ECG.equals(database.toUpperCase()))
{
4
session
=
tl.get();
5
if
(session
==
null
)
{
6
if
(sf_ecg
==
null
)
{
7
if
(conf_ecg
==
null
)
{
8
conf_ecg
=
new
Configuration();
9
conf_ecg.configure(
"
hibernate_ecg.cfg.xml
"
);
10
Properties p
=
conf_ecg.getProperties();
11
p.put(
"
hibernate.default_schema
"
, getHhecg_user());
//
这里是加入不同的表空间设置
12
}
13
sf_ecg
=
conf_ecg.buildSessionFactory();
14
}
15
session
=
sf_ecg.openSession();
16
tl.set(session);
17
}
18
}
else
if
(identify_SC.equals(database.toUpperCase()))
{
19
session
=
tl.get();
20
if
(session
==
null
)
{
21
if
(sf_sc
==
null
)
{
22
if
(conf_sc
==
null
)
{
23
conf_sc
=
new
Configuration();
24
conf_sc.configure(
"
hibernate_sc.cfg.xml
"
);
25
Properties p
=
conf_sc.getProperties();
26
p.put(
"
hibernate.default_schema
"
, getHhsc_user());
//
这里是加入不同的表空间设置
27
}
28
sf_sc
=
conf_sc.buildSessionFactory();
29
}
30
session
=
sf_sc.openSession();
31
tl.set(session);
32
}
33
}
34
return
session;
35
}
36
37
//
关闭session
38
public
static
void
closeSession()
{
39
Session session
=
tl.get();
40
if
(session
!=
null
)
{
41
session.close();
42
tl.set(
null
);
43
}
44
}
根据用户请求来判断采用何种数据库,database即为区分数据库的标识。
如果在实体类的映射文件,配置了schema="表空间用户名" 那么上面代码里面的p.put("hibernate.default_schema", getHhsc_user()); 失效
posted on 2012-01-18 12:41
朔望魔刃
阅读(268)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
<
2012年1月
>
日
一
二
三
四
五
六
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
常用链接
我的随笔
我的文章
我的评论
我的参与
最新评论
留言簿
给我留言
查看公开留言
查看私人留言
随笔分类
Android
flex(1)
git
gradle
IHE&DICOM&HL7的开源框架(1)
java(40)
JavaScript(2)
maven(1)
mybatis
netty(3)
python(3)
spring
svn(1)
即时通信(4)
各种整合
各种配置(9)
数据库(2)
设计模式&&数据结构(11)
随笔档案
2018年8月 (1)
2018年3月 (1)
2018年1月 (1)
2017年12月 (3)
2017年11月 (6)
2017年10月 (1)
2017年8月 (2)
2017年7月 (1)
2017年6月 (1)
2017年5月 (1)
2017年2月 (1)
2016年12月 (3)
2016年10月 (1)
2016年9月 (2)
2015年12月 (1)
2015年7月 (2)
2015年5月 (1)
2015年2月 (3)
2015年1月 (1)
2014年12月 (2)
2014年7月 (1)
2014年5月 (4)
2014年3月 (1)
2013年9月 (6)
2013年8月 (1)
2013年7月 (3)
2013年4月 (1)
2012年7月 (2)
2012年6月 (4)
2012年5月 (2)
2012年1月 (1)
2011年12月 (2)
2011年11月 (2)
2011年9月 (1)
2011年6月 (1)
2011年5月 (1)
2011年3月 (4)
2011年2月 (2)
2010年12月 (2)
2010年9月 (9)
2010年8月 (4)
2010年4月 (1)
2010年3月 (1)
2010年1月 (2)
文章分类
文章(2)
生活(2)
英语学习(3)
诗歌(3)
文章档案
2011年1月 (2)
2010年12月 (3)
2010年11月 (1)
2010年10月 (1)
2010年9月 (2)
2010年8月 (1)
收藏夹
技术文章(2)
娱乐博客
周德东
郭敬明
韩寒
鬼谷女
牛博
其实我是一个程序员
博客大巴~~
很牛的C++程序员
梦幻之旅
达内恩师
雪山飞鹄
高性能网站专家 淘宝 阿里架构师
搜索
最新评论
1. re: jsp通过js按钮导出word小结
下达
--q
2. re: linux安装mysql后root无法登录
谢啦
--galo
3. re: openfire_3.9.3集群配置
我这根本就不显示hazelcast 这个插件包。请教下各位大神。
--openfre
4. re: openfire_3.8.2集群配置[未登录]
hazelcast-cache-config.xml 文件每一台都要配4行ip吗
--wp
5. re: openfire_3.8.2集群配置
评论内容较长,点击标题查看
--朔望魔刃
阅读排行榜
1. linux安装mysql后root无法登录(17828)
2. maven三种打包插件(15113)
3. openfire_3.8.2集群配置(9845)
4. 联想y510p网卡设置(8551)
5. swing日期控件(6839)
评论排行榜
1. openfire_3.8.2集群配置(17)
2. dcm4chee部署安装(3)
3. Java Service Wrapper工具把Java程序转换为Windows服务小结(2)
4. jsp通过js按钮导出word小结(2)
5. XML Schema<一>(1)