Hibernate connection.password屬性:指定資料庫連線密碼

2020-07-16 10:05:06
hibernate.connection.password 屬性用於指定連線資料庫時所需使用者名稱的密碼。

語法:

hibernate.connection.password=屬性值

採用 Java 屬性檔案格式的組態檔時,指定 connection.password 屬性。

hibernate.connection.password 屬性的屬性值為連線資料庫時所需的密碼。

範例1

採用XML格式的組態檔連線資料庫時,指定資料庫的登入使用者的密碼為空,關鍵程式碼如下:
<property name="hibernate.connection.password"></property>

採用 Java 屬性檔案格式的組態檔連線資料庫時,指定資料庫的登入使用者的密碼為空,關鍵程式碼如下:
hibernate.connection.password=

範例2

採用 XML 格式的組態檔連線資料庫時,指定資料庫的登入使用者的密碼為 111,關鍵程式碼如下:
<property name="hibernate.connection.password">
  111
</property>

採用 Java 屬性檔案格式的組態檔連線資料庫時,指定資料庫的登入使用者的密碼為 111,關鍵程式碼如下:
hibernate.connection.password=111