如何配置Hibernate支援MySql
配置Tomcat+MySql+Hibernate
我修改了Hibernate.properties設定使用PostgreSQLDialect
hibernate.dialect net.sf.hibernate.dialect.MySQLDialect
hibernate.connection.driver_class org.gjt.mm.mysql.Driver
hibernate.connection.driver_class com.mysql.jdbc.Driver
hibernate.connection.url jdbc:mysql:MyTest
hibernate.connection.username root
hibernate.connection.password root
修改hibernate.cfg.xml如下
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.datasource">MyTest</property>
<property name="show_sql">false</property>
<property name="use_outer_join">true</property>
<property name="dialect">net.sf.hibernate.dialect.MySQLDialect</property>
<!-- Mapping files -->
<mapping resource="Cat.hbm.xml"/>
</session-factory>
</hibernate-configuration>
但是程式執行到InitialHibernate處出現以下錯誤
javax.naming.NameNotFoundException: Name gt3k is not bound in this Context
請指點
我修改了Hibernate.properties設定使用PostgreSQLDialect
hibernate.dialect net.sf.hibernate.dialect.MySQLDialect
hibernate.connection.driver_class org.gjt.mm.mysql.Driver
hibernate.connection.driver_class com.mysql.jdbc.Driver
hibernate.connection.url jdbc:mysql:MyTest
hibernate.connection.username root
hibernate.connection.password root
修改hibernate.cfg.xml如下
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.datasource">MyTest</property>
<property name="show_sql">false</property>
<property name="use_outer_join">true</property>
<property name="dialect">net.sf.hibernate.dialect.MySQLDialect</property>
<!-- Mapping files -->
<mapping resource="Cat.hbm.xml"/>
</session-factory>
</hibernate-configuration>
但是程式執行到InitialHibernate處出現以下錯誤
javax.naming.NameNotFoundException: Name gt3k is not bound in this Context
請指點
相關文章
- Spring中如何配置Hibernate事務Spring
- Hibernate配置OracleOracle
- 01、Hibernate安裝配置
- Hibernate引入響應性Reactive支援React
- 如何透過Hibernate/JPA在MySQL中儲存UTC時區?MySql
- java中Hibernate的環境配置Java
- 【SpringBoot Demo】MySQL + JPA + Hibernate + Springboot + Maven DemoSpring BootMySqlMaven
- Vapor如何配置MySQL資料庫VaporMySql資料庫
- 如何修復MySQL配置檔案?MySql
- Hibernate配置檔案中對映元素詳解
- 配置nginx支援Nginx
- Hibernate中二級快取(sessionFactory)的配置及其使用。快取Session
- Hibernate SQL方言 (hibernate.dialect)SQL
- NGINX配置SSL支援Nginx
- nginx配置 laravel 支援NginxLaravel
- MySQL5.7.21免安裝版如何配置MySql
- 如何在Hibernate/JPA中配置具有兩個連線池的兩個資料來源
- Hibernate中不支援複雜子查詢from (select ……)解決方案
- Hibernate
- mysql配置MySql
- hibernate一對多、多對多的實體設計和配置檔案配置
- 如何在Net6.0裡配置多版本支援並支援註釋說明的SwaggerSwagger
- 如何在SpringBoot中使用Hibernate/JPA的@NaturalId?Spring Boot
- Hibernate/JPA中如何合併實體集合?
- 如何選擇配置 MySQL innodb_log_file_sizeMySql
- Nginx 支援websocket的配置NginxWeb
- Spring Boot 支援 JSP配置Spring BootJS
- mysql bind_address如何配置多個地址 mysql bind-address選項MySql
- hibernate使用
- Hibernate框架框架
- Mysql安全配置MySql
- 如何使用Hibernate/JPA的JPQL/HQL查詢提取?
- OneinStack如何配置MySQL遠端連線並授權MySql
- 如何通過配置hibernate方言包+GBase8s jdbc實現GBase8s資料庫操作JDBC資料庫
- 介紹Nginx配置支援PHPNginxPHP
- catalyst支援unicode的重要配置Unicode
- MySQL支援IPv6-TODOMySql
- 手寫 Hibernate ORM 框架 00-hibernate 簡介ORM框架
- 如何啟用Hibernate慢查詢日誌? -Vlad Mihalcea