JBuilderX+SQL Server开辟hibernate[Java编程]
本文“JBuilderX+SQL Server开辟hibernate[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
环境:
开辟的IDE:JBuilderX
利用的数据库:MS Sql Server 2000
利用的数据库驱动:JSQL Driver(JDBC 3.0)
阐明:
1、hibernate在配置文件中明确阐明“Microsoft Driver (not recommended!)”,因此先利用JSQL Driver.
2、JSQL Driver可以到http://www.jnetdirect.com中得到,需求先注册个用户,才能下载到试用的版本.
3、JDBC3.0只能在JDK1.4及以上版本中利用,JBuilderX默许的是JDK1.4
预备工作:
1、下载Hibernate,目前最高版本是2.1.2
2、在JBuilder中成立一个lib,起名为hibernate_full,将hibernatelib下的全部jar通通放进去,并将hibernatehibernate2.jar也放进去
3、在JBuilder中成立一个lib,起名为JSQL3,将JSQL Driver下的JNetDirectJSQLConnectJDBC_3.0_DriverJSQLConnect.jar放进去
开始举行例子:
1、成立一个project,命名为testhibernate
2、在属性里的Required Libraries里加入hibernate_full和JSQL3
3、在菜单Project --> Project Properties --> Build --> Resource 里选中xml文件,挑选“Copy” --在编译该项目的时刻,会自动将src文件夹里的xml文件拷贝到classes文件夹里的呼应目录下
4、在testhibernate项目中成立一个src目录
5、将hibernate源文件里的hibernatesrchibernate.properties 和 log4j.properties拷贝到testhibernate项目中的src目录下
6、改正hibernate.properties中关于MS Sql Server 2000驱动方面的配置
找到
## HypersonicSQL
hibernate.dialect net.sf.hibernate.dialect.HSQLDialect
hibernate.connection.driver_class org.hsqldb.jdbcDriver
hibernate.connection.username sa
hibernate.connection.password
hibernate.connection.url jdbc:hsqldb:hsql://localhost
hibernate.connection.url jdbc:hsqldb:test
hibernate.connection.url jdbc:hsqldb:.
这段,这里是说默许的是利用HypersonicSQL,我们利用的是MS Sql Server,因此将整段注释掉
## HypersonicSQL
#hibernate.dialect net.sf.hibernate.dialect.HSQLDialect
#hibernate.connection.driver_class org.hsqldb.jdbcDriver
#hibernate.connection.username sa
#hibernate.connection.password
#hibernate.connection.url jdbc:hsqldb:hsql://localhost
#hibernate.connection.url jdbc:hsqldb:test
#hibernate.connection.url jdbc:hsqldb:.
并且,找到
## MS SQL Server
#hibernate.dialect net.sf.hibernate.dialect.SQLServerDialect
#hibernate.connection.username sa
#hibernate.connection.password sa
## JSQL Driver
#hibernate.connection.driver_class com.jnetdirect.jsql.JSQLDriver
#hibernate.connection.url jdbc:JSQLConnect://1E1/test
这段,比方我们利用的数据库服务器机械名为yuj,数据库名为testhi,衔接到数据库上去的用户名为sa,密码为sa,则改正后这段成为
## MS SQL Server
hibernate.dialect net.sf.hibernate.dialect.SQLServerDialect
hibernate.connection.username sa
hibernate.connection.password sa
## JSQL Driver
hibernate.connection.driver_class com.jnetdirect.jsql.JSQLDriver
hibernate.connection.url jdbc:JSQLConnect://yuj/testhi
以上是“JBuilderX+SQL Server开辟hibernate[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |