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
>
查看全文
相关阅读:
su的使用与退出
338. Counting Bits
c语言学习笔记
Linux命令
vimrc
CSS选择器
链表//设计链表
数组和字符串//反转字符串中的单词 III
CSS样式基本知识
开始学习CSS,为网页添加样式
原文地址:https://www.cnblogs.com/liuzhengdao/p/1579995.html
最新文章
学习笔记之SSH & MobaXterm
学习笔记之PostgreSQL / pgAdmin / Psycopg / PostGIS
学习笔记之Swagger
学习笔记之Lazy evaluation
学习笔记之Git / Gitflow / TortoiseGit
学习笔记之GenFu
python基础之字符编码(一)
python之数据类型
python全栈考试(一)
python基础(一)
热门文章
day13作业
自动部署及监控脚本
awk
shell与正则表达式
第九天作业
283. Move Zeroes
104. Maximum Depth of Binary Tree
258. Add Digits
136. Single Number
PANIC: HOME is defined but could not find Nexus_4_API_22.ini file in $HOME/.android/avd (Note: avd is searched in the order of $ANDROID_AVD_HOME,$ANDROID_SDK_HOME/.android/avd and $HOME/.android/avd)
Copyright © 2011-2022 走看看