分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 前端开发

SSH之hibernate.cfg.xml

发布时间:2023-09-06 01:18责任编辑:郭大石关键词:xml
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE hibernate-configuration PUBLIC"-//Hibernate/Hibernate Configuration DTD 3.0//EN""http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"><hibernate-configuration><session-factory><!-- 必须配置 --><property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property><property name="hibernate.connection.url">jdbc:mysql:///day67</property><property name="hibernate.connection.username">root</property><property name="hibernate.connection.password">root</property><property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property><!-- 可选配置 --><property name="hibernate.show_sql">true</property><property name="hibernate.format_sql">true</property><property name="hibernate.hbm2ddl.auto">update</property><!-- 配置C3P0的连接池 --><property name="connection.provider_class">org.hibernate.c3p0.internal.C3P0ConnectionProvider</property><!--把session绑定到当前线程上的配置--><property name="hibernate.current_session_context_class">org.springframework.orm.hibernate5.SpringSessionContext</property><!-- 映射配置文件 --><mapping resource="com/itheima/customer/domain/Customer.hbm.xml"/></session-factory></hibernate-configuration>

SSH之hibernate.cfg.xml

原文地址:http://www.cnblogs.com/qiqimu/p/7677847.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved