zoukankan
html css js c++ java
Hibernate.xml
Code
1
<?
xml version='1.0' encoding='utf-8'
?>
2
<!
DOCTYPE hibernate-configuration PUBLIC
3
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
4
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"
>
5
<
hibernate-configuration
>
6
<
session-factory
>
7
<!--
hibernate dialect
-->
8
<
property
name
="show_sql"
>
false
</
property
>
9
<
property
name
="hibernate.dialect"
>
org.hibernate.dialect.MySQLInnoDBDialect
</
property
>
10
<
property
name
="hibernate.connection.driver_class"
>
com.mysql.jdbc.Driver
</
property
>
11
<
property
name
="hibernate.connection.url"
>
jdbc:mysql
</
property
>
12
<
property
name
="hibernate.connection.username"
>
username
</
property
>
13
<
property
name
="hibernate.connection.password"
>
password
</
property
>
14
<
property
name
="hibernate.cache.provider_class"
>
org.hibernate.cache.HashtableCacheProvider
</
property
>
15
16
<
mapping
resource
="ceapet_user.hbm.xml"
/>
17
<
mapping
resource
="ceapet_supplies.hbm.xml"
/>
18
19
</
session-factory
>
20
</
hibernate-configuration
>
查看全文
相关阅读:
【设计模式】—— 观察者模式Observer
【设计模式】—— 备忘录模式Memento
【设计模式】—— 中介者模式Mediator
【领域驱动】—— 领域驱动导读
【设计模式】—— 迭代模式Iterator
【设计模式】—— 解释器模式Interpret
【设计模式】—— 命令模式Commond
【设计模式】—— 职责链模式ChainOfResponsibility
【设计模式】—— 代理模式Proxy
系统设置参数说明11
原文地址:https://www.cnblogs.com/liuzhengdao/p/1579995.html
最新文章
Python Monkey patch猴子补丁
Lua的function、closure和upvalue
Programming in lua 环境
《unix网络编程》笔记
Leetcode: Word Break
STL unordered_set
转: 正向代理与反向代理的区别
Linux守护进程daemon
二叉树相关问题合集
LED音乐频谱之输出数据处理
热门文章
CF(441D Valera and Swaps)置换群
Cocos2d-x3.1UserDefaule类具体解释
iOS开发-CGAffineTransformMakeRotation改变了中心解决的方法
Android 消息处理源代码分析(1)
Splay POJ3468(老题新做)
谷歌笔试题整理(一)
HDU 4508 湫湫系列故事——减肥记I(全然背包)
ChromiumFX中js调用C#方法
HMM的学习笔记1:前向算法
【设计模式】—— 状态模式State
Copyright © 2011-2022 走看看