关于Hibernate连接数据库
发布网友
发布时间:2023-05-23 18:13
我来回答
共2个回答
热心网友
时间:2024-12-11 21:26
这样才是正确的,你那个是依赖JDBC的链接,所以不需要URL和class:
hibernate.properties
hibernate.dialect=org.hibernate.dialect.SQLServerDialect
hibernate.connection.driver_class=com.microsoft.jdbc.sqlserver.SQLServerDriver
hibernate.connection.url=jbdc:microsoft:sqlserver://localhost:2000/SAMPLEDB
hibernate.connection.username=sa
hibernate.connection.password=123456
热心网友
时间:2024-12-11 21:26
要的,没有地址怎么可以呢!
hibernate.show_sql=true // 是否显示SQL语言
hibernate.dialect=org.hibernate.dialect.MySQLDialect //指定连接语言
hibernate.connection.driver_class=com.mysql.jdbc.Driver //指定驱动
hibernate.connection.url=jdbc:mysql://localhost/schoolPro //指定数据库地址
hibernate.connection.username sa //用户名字
hibernate.connection.password sa //密码
最后4行为必须配置!你也还可以加入别的设置,比如连接数的最大和最小数等