欢迎来到天天文库
浏览记录
ID:14115322
大小:34.00 KB
页数:6页
时间:2018-07-26
《hibernate有很多值得学习的地方》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Hibernate有很多值得学习的地方,这里我们主要介绍Hibernateschema,包括介绍切换Schema等方面。Hibernateschema如果你在调用Hibernate的时候需要切换schema怎么办呢。在oracle中,不同的用户,使用不同的schema.在Hibernate的POJO中,会指定了schema1. 2.
2、ing DTD 3.0//EN" 3."http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> 4. 7. 8. 1.3、" type="java.lang.Long"> 2. 3. 4. 5. 6. 7. 8. 9. 上面的代码部分,
3、" type="java.lang.Long"> 2. 3. 4.
4、就指定了Schema.如果在操作的时候想切换Schema.操作如下:默认的配置POI_BEIJING上面的映射文件改为:1. 2.5、et/hibernate-mapping-3.0.dtd"> 4. 7. 8. 9. 10.6、le="0" /> 11. 12. 13. 1. 2. 3. 4. 在操作的,可以用下面的方法来重新build你的SessionFactory1.public static void rebuildSession7、FactoryForChangeSchema(String newSchema){ 2.try { 3. 4.Properties p = configuration.getProperties(); 5.System.out.println("---" + p); 6.p.put("hibernate.default_schema", newSchema); 7.sessionFactory = configuration.buildSessionFactory(); 8.System.out.println(" change 8、schema successfully ......... "); 9.} catch (Exception e) { 1.System.err 2..println("%%%% rebuild session factory failed for
5、et/hibernate-mapping-3.0.dtd"> 4. 7. 8. 9. 10.6、le="0" /> 11. 12. 13. 1. 2. 3. 4. 在操作的,可以用下面的方法来重新build你的SessionFactory1.public static void rebuildSession
6、le="0" /> 11. 12.
7、FactoryForChangeSchema(String newSchema){ 2.try { 3. 4.Properties p = configuration.getProperties(); 5.System.out.println("---" + p); 6.p.put("hibernate.default_schema", newSchema); 7.sessionFactory = configuration.buildSessionFactory(); 8.System.out.println(" change
8、schema successfully ......... "); 9.} catch (Exception e) { 1.System.err 2..println("%%%% rebuild session factory failed for
此文档下载收益归作者所有