setTrustStorePassword 方法 (SQLServerDataSource)
設定用來檢查 trustStore 資料完整性的密碼。
語法
public void setTrustStorePassword(java.lang.String trustStorePassword)
參數
trustStorePassword
String,包含用來檢查 trustStore 資料完整性的密碼。
備註
trustStorePassword 屬性可以隨著 trustStore 屬性一起指定,而其值可用來檢查 trustStore 檔案的完整性。
如果有設定 trustStore 屬性,但是未設定 trustStorePassword 屬性,就不會檢查 trustStore 的完整性。
當 trustStore 和 trustStorePassword 屬性都未指定時,驅動程式將會使用 Java Virtual Machine (JVM) 系統屬性 "javax.net.ssl.trustStore" 和 "javax.net.ssl.trustStorePassword"。 如果未指定 "javax.net.ssl.trustStorePassword" 系統屬性,就不會檢查 trustStore 的完整性。
如果未設定 trustStore 屬性,但是有設定 trustStorePassword 屬性,JDBC 驅動程式將會使用 "javax.net.ssl.trustStore" 指定的檔案做為信任存放區,並使用指定的 trustStorePassword,檢查信任存放區的完整性。 當用戶端應用程式不要在 JVM 系統屬性中儲存密碼時,可能需要這個動作。
如需詳細資訊,請參閱設定連線屬性。
從 JDBC Driver 3.0 開始,如果您在繫結資料來源屬性之前設定 SQLServerDataSource.setTrustStorePassword,您必須先呼叫 SQLServerDataSource.setTrustStorePassword 才能取得連接。 如需詳細資訊,請參閱 SQLServerDataSource.getReference。