我正在開發一個添加了依賴項的Spring Boot應用程序。這個依賴有一個spring.xml文件。我正在掃描這個xml文件並創建bean。其中一個bean正在尋找classpath中的hibernate.properties。我在我的應用程序的資源文件夾下添加了這個屬性文件。但是我仍然看到下面列出的例外情況。請你能讓我知道我錯過了什麼嗎?Spring - java.io.FileNotFoundException:無法打開類路徑資源,因爲它不存在
<util:properties id="HibernateProperties" location="classpath:hibernate.properties"/>
java.io.FileNotFoundException:類路徑資源 [hibernate.properties]不能打開,因爲它不符合存在
你試過'classpath:/ hibernate.properties'嗎? –