blogjava's web log

blogjava's web log
...

hibernate.hbm.xml

 


<!-- 注意:这是hibernate3
  hibernate2 换成
  <!DOCTYPE hibernate-mapping
PUBLIC "-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">



hibernate3映射文件配置头部改成
<!DOCTYPE hibernate-mapping PUBLIC
    "-//Hibernate/Hibernate mapping DTD 3.0//EN"
    "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

-->
<? xml version="1.0" encoding="UTF-8" ?>

<! DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
    "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"
>
< hibernate-configuration >
  
< session-factory >
  
<!-- jdbc 驱动 -->
    
< property  name ="connection.driver_class" > org.gjt.mm.mysql.Driver </ property >
    
<!-- 连接字符串 -->
    
< property  name ="connection.url" > jdbc:mysql://localhost:3306/wjcms </ property >
    
<!-- 用户名 -->
    
< property  name ="connection.username" > root </ property >
    
<!-- 数据库密码 -->
    
< property  name ="connection.password" > wujun </ property >

    
< property  name ="connection.pool_size" > 1 </ property >
    
<!-- dialect 每种数据库都有其相对的dialect 这里是mysql -->
    
< property  name ="dialect" > org.hibernate.dialect.MySQLDialect </ property >
    
<!-- 是否将运行期间的生成的SQL输出到日志已供调试 -->
    
< property  name ="show_sql" > true </ property >
    
<!-- 是否使用外连接 -->
    
< property  name ="hibernate.use_outer_join" > true </ property >
    
<!-- 事务管理类型,这里是jdbc 的 -->
    
< property  name ="hibernate.transaction.factory_class" >
      org.hibernate.transaction.JDBCTransactionFactory
    
</ property >
    
<!-- 映射文件配置 -->
    
< mapping  resource ="articleVO.hbm.xml"   />
   
< mapping  resource ="remarkVO.hbm.xml"   />
  
</ session-factory >
</ hibernate-configuration >

如果用的是jndi用
 <property name="connection.datasource">java:comp/env/jdbc/wjcms</property>

详细介绍查看。

http://www.huihoo.com/framework/hibernate/reference-v3_zh-cn/session-configuration.html

posted on 2006-04-15 20:30 record java and net 阅读(616) 评论(0)  编辑  收藏 所属分类: 常用配置代码


只有注册用户登录后才能发表评论。


网站导航:
 

导航

常用链接

留言簿(44)

新闻档案

2.动态语言

3.工具箱

9.文档教程

友情链接

搜索

最新评论