0

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

手伝ってくれてありがとう!

4

1 に答える 1

0

サーバー構成で tcp/ip 接続が許可されていますか? はいの場合は、接続に正しいポート番号を使用していることを確認してください。または、名前付きパイプを介して接続する場合は、namedPipe=true を設定します。URL 文字列のプロパティ。

于 2012-07-31T14:02:46.933 に答える