⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 yeqiangwei.hb.xml

📁 JSP购物车(SQLserver版) ================== 简单的JSP电子商务网站购物车 带结算功能,带注册系统 大二时自己编写的,供大家参考学习 功能不是很详尽,美工
💻 XML
字号:
<!DOCTYPE hibernate-configuration PUBLIC
	"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
	"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
<session-factory>

<property name="hibernate.generate_statistics">true</property>
<property name="hibernate.cache.use_structured_entries">true</property>
<property name="hibernate.cache.use_query_cache">true</property>
<property name="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
<property name="hibernate.cache.user_minimal_puts">true</property>
<property name="org.hibernate.cache">true</property>

<!-- Connection SQL Server 2000 -->
<property name="connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property>
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property> 
<property name="connection.url">jdbc:jtds:sqlserver://127.0.0.1:1433;DatabaseName=YQW_club;</property> 
<property name="connection.username">sa</property> 
<property name="connection.password">123</property>
<property name="show_sql">false</property> 

<!-- Datasource Start
<property name="connection.datasource">java:comp/env/JNDI/YeQiangWeiClub</property>
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name="show_sql">false</property>
Datasource END  -->

<property name="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property> 
<property name="hibernate.show_sql">false</property>

<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Ad.hbm.xml" />
<mapping resource="com/yeqiangwei/club/fileUpload/dao/hibernate/FileUpload.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/ManageLog.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/ReContent.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Reply.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Content.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Topic.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Admin.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/GroupOfForum.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Rule.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Group.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Role.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Forum.hbm.xml" /> 
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Area.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/NoAllowedChar.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Counter.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Counters.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Register.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/ForumLabel.hbm.xml" /> 
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/FavoriteForum.hbm.xml" /> 
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/UserSettings.hbm.xml" /> 
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/Friend.hbm.xml" /> 
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/MessageBlacklist.hbm.xml" /> 
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/MessageTake.hbm.xml" /> 
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/MessageSend.hbm.xml" /> 
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/User.hbm.xml" />
<mapping resource="com/yeqiangwei/club/dao/hibernate/map/UserIndexed.hbm.xml" />

</session-factory>
</hibernate-configuration>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -