JDBC连接属性
hibernate.connection.driver_classs属性:设置连接数据库的驱动;
hibernate.connection.url属性:设置所需连接数据库的URL;
hibernate.connection.username属性:设置所需连接数据库的用户名;
hibernate.connection.password属性:设置连接数据库的密码;
hibernate.connection.pool_size属性:设置Hibernate数据库连接池的最大并发连接数;
hibernate.dialect属性:设置连接数据库所使用的方言。
在实际中常用C3P0连接池,用其属性代替有关Hibernate数据库连接池的属性
hibernate.c3p0.max_size属性:C3P0数据库连接池的最大连接数;
hibernate.c3p0.min_size属性:C3P0数据库连接池的最小连接数;
hibernate.c3p0.timeout属性:C3P0数据库连接池的超时时长;
hibernate.c3p0.max_statements属性:C3P0缓存Statement对象的数量。