Java プロジェクトを SQL Server 2005 データベースに接続したいのですが、残念ながらいくつかの問題が発生しています。私は Windows 認証を使用しています (私の PC 名はパスワードなしの BOURKADIXP です)。これが私の 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.connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property>
<property name="hibernate.connection.password">azerty</property>
<property name="hibernate.connection.url">jdbc:jtds:sqlserver://127.0.0.1/DBM6000</property>
<property name="hibernate.connection.username">sa</property>
<property name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property>
</session-factory>
</hibernate-configuration>
ここに私が持っていた例外があります:
org.hibernate.exception.JDBCConnectionException: Getting database metadata
Getting database metadata
java.sql.SQLException: Network error IOException: Connection refused: connect
Network error IOException: Connection refused: connect
java.sql.SQLException: Network error IOException: Connection refused: connect
Network error IOException: Connection refused: connect
java.net.ConnectException: Connection refused: connect
Connection refused: connect
手伝ってくれてありがとう!