我是靠谱客的博主 等待白羊,最近开发中收集的这篇文章主要介绍Hibernate高级配置1.配置数据库连接池2.把SessionFactory与JNDI绑定,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
1.配置数据库连接池
1.1.使用默认的数据库连接池
hibernate.dialect = org.hibernate.dialect.MySQLDialect
hibernate.connection.driver_class = com.mysql.jdbc.Driver
hibernate.connection.url = jdbc:mysql://localhost:3306/sampledb
hibernate.connection.username = root
hibernate.connection.password = 1234
hibernate.show_sql = true
1.2.使用C3P0连接池
hibernate.dialect = org.hibernate.dialect.MySQLDialect
hibernate.connection.driver_class = com.mysql.jdbc.Driver
hibernate.connection.url = jdbc:mysql://localhost:3306/sampledb
hibernate.connection.username = root
hibernate.connection.password = 1234
hibernate.show_sql = true
hibernate.c3p0.min_size = 5
hibernate.c3p0.max_size = 20
hibernate.c3p0.timeout = 300
hibernate.c3p0.max_statements = 50
hibernate.c3p0.idle_test_period = 3000
1.3.从容器中获得数据源
<Resource name="jdbc/SAMPLEDB"
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="root"
password="1234"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/SAMPLEDB?autoReconnect=true" />
hibernate.dialect = org.hibernate.dialect.MySQLDialect
hibernate.connection.datasource = java:comp/env/jdbc/SAMPLEDB
hibernate.show_sql = true
2.把SessionFactory与JNDI绑定
hibernate.dialect = org.hibernate.dialect.MySQLDialect
hibernate.connection.datasource = java:comp/env/jdbc/SAMPLEDB
hibernate.transaction.factory_class = org.hibernate.transaction.JTATransactionFactory
hibernate.transaction.manager_lookup_class = org.hibernate.transaction.JBossTransactionManagerLookup
hibernate.session_factory_name = java:hibernate/HibernateFactory
hibernate.show_sql = true
使用JNDI访问和JNDI绑定的SessionFactory实例:
Context ctx = new InitialContext();
String jndiName = "java:hibernate/HibernateFactory";
SessionFactory sessionFactory = (SessionFactory)ctx.lookup(jndiName);
Session session = sessionFactory .openSession();
...
最后
以上就是等待白羊为你收集整理的Hibernate高级配置1.配置数据库连接池2.把SessionFactory与JNDI绑定的全部内容,希望文章能够帮你解决Hibernate高级配置1.配置数据库连接池2.把SessionFactory与JNDI绑定所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复