浏览 4854 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2003-09-16
哪位遇到过类似的问题?请指教!配置文件清单如下: hibernate.properties -------------------------------------------------------------------------------- hibernate.session_factory_name=hibernate hibernate.dialect=net.sf.hibernate.dialect.OracleDialect hibernate.connection.datasource=quickstart hibernate.connection.provider_class=net.sf.hibernate.connection.DatasourceConnectionProvider hibernate.jdbc.fetch_size=50 hibernate.jdbc.batch_size=25 -------------------------------------------------------------------------------- hibernate.cfg.xml ------------------------------------------------------------------------------------ <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd"> <hibernate-configuration> <session-factory name="hibernate"> <property name="connection.datasource">quickstart</property> <property name="dialect">net.sf.hibernate.dialect.OracleDialect</property> <property name="show_sql">false</property> <property name="use_outer_join">true</property> <property name="provider_class">net.sf.hibernate.connection.DatasourceConnectionProvider</property> <property name="jdbc.fetch_size">50</property> <property name="jdbc.batch_size">25</property> <!-- Mapping files --> <mapping resource="OrderBase.hbm.xml"/> </session-factory> </hibernate-configuration> 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2004-01-12
你可否贴出你的代码怎么引用你的配置文件的,hibernate默认是使用hibernate.properties这个文件,如果你要使用其他位置的其他文件,你要在代码中指定
|
|
返回顶楼 | |
发表时间:2004-01-12
配置文件好像没错
|
|
返回顶楼 | |