关于配置 博客分类: hibernate HibernateSQLMyeclipseMicrosoftJDBC
程序员文章站
2024-03-16 09:57:46
...
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <!-- Generated by MyEclipse Hibernate Tools. --> <hibernate-configuration> <session-factory> <!-- 指定连接数据库的用户名 --> <property name="connection.username">sa</property> <!-- 指定连接数据库的URL --> <property name="connection.url"> jdbc:microsoft:sqlserver://localhost:1433 </property> <!-- 指定数据库使用的SQL方言 --> <property name="dialect"> org.hibernate.dialect.SQLServerDialect </property> <!-- 指定连接数据库的口令 --> <property name="connection.password">sa</property> <!-- 指定连接数据库的驱动程序 --> <property name="connection.driver_class"> com.microsoft.jdbc.sqlserver.SQLServerDriver </property> <!-- true表示程序运行时,在控制台显示SQL语句,false表示不显示SQL语句 --> <property name="show_sql">true</property> <!-- 持久化类所对应的映射文件 --> <mapping resource="com/supersit/hibernate/mapping/Employee.hbm.xml"/> </session-factory> </hibernate-configuration>
推荐阅读
-
输出导航条 博客分类: hibernate HibernateJSP
-
批量删除 博客分类: hibernate 批量删除
-
关于配置 博客分类: hibernate HibernateSQLMyeclipseMicrosoftJDBC
-
关于org.hibernate.NonUniqueObjectException 博客分类: hibernate HibernateBean
-
关于org.hibernate.NonUniqueObjectException 博客分类: hibernate HibernateBean
-
批量删除 博客分类: hibernate 批量删除
-
分页查询 博客分类: hibernate 分页查询
-
输出导航条 博客分类: hibernate HibernateJSP
-
关于attachEvent和addEventListener 博客分类: AJAX IEJavaScript浏览器HTML
-
分页查询 博客分类: hibernate 分页查询