SpringBoot項目中html頁面中插入了一個圖片,啓動項目之後看了一下,沒有。html
這是時候基本就是路徑沒對了。spring
首先看一下SpringBoot項目的文件目錄結構,static目錄存放靜態資源,templates目錄存放訪問的頁面,那麼templates目錄中的error.html插入圖片(static/images/error.png)。那麼就是image標籤的src屬性出了問題。bash
<img src="../static/images/error.png"/>
複製代碼
<img src="/images/error.png"/>
複製代碼
若是目錄不一樣,而涉及的路徑須要修改的太多,能夠直接在application.properties中添加spring.resources.static-locations屬性。(例如:classpath:/)app
參考spa