溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring配置文件使用${username}的示例

發(fā)布時間:2021-02-01 13:48:43 來源:億速云 閱讀:183 作者:小新 欄目:編程語言

這篇文章主要介紹Spring配置文件使用${username}的示例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

spring+mybatis集成過程中,報錯信息如下:

[ERROR] 2020-02-09 create connection SQLException, url: jdbc:mysql://127.0.0.1:3306/ems, errorCode 1045, state 28000

原因:spring默認會優(yōu)先加載使用系統(tǒng)環(huán)境變量,此時,username實際上指的是當前計算機的用戶名。而不是取值配置文件中定義的username。

兩種解決方式:

(1)將datasource中的${username}換成了${name}就可以了,

(3)設置本地配置覆蓋系統(tǒng)配置

<context:property-placeholder local-override="true" location="classpath:conn.properties"></context:property-placeholder>

(2)使用標簽:

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" p:localOverride="true">
    <property name="locations" value="classpath:conn.properties"></property>
  </bean>

以上是“Spring配置文件使用${username}的示例”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI