我試圖建立Netbeans的使用JTDS司機Hibernate的工作連接到SQLSERVER 2008如何設置與Netbeans的
SQLServer的2008 localy安裝,沒有用戶名或密碼SQLSERVER&JTDS司機休眠。
這是hibernate.cfg:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.current_session_context_class">thread</property>
<property name="hibernate.query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property>
<property name="hibernate.connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:jtds:sqlserver://localhost:2545/MyDB</property>
</session-factory>
</hibernate-configuration>
當我嘗試使用Hibernate逆向工程嚮導安裝的Hibernate逆向工程文件,我得到以下錯誤:
Unable to connect. Cannot establish a connection to jdbc:jtds:sqlserver://localhost:2545/MyDB using net.sourceforge.jtds.jdbc.Driver (I/O Error: SSO Failed: Native SSPI library not loaded. Check the java.library.path system property.).
我有ntlmauth.dll在WINDOWS \ system32中。
你有沒有達到這個解決方案?反向工程嚮導在使用jTDS驅動程序時不執行任何操作,並且可以與MS驅動程序一起正常工作。 – lm2s