1. 程式人生 > >spring springmvc 展示圖片,靜態資源的處理

spring springmvc 展示圖片,靜態資源的處理

jsp中顯示一張照片

<img alt="靜態圖片" src="static/目錄.png">

然後在springmvc的配置中加上

<!--對靜態資源的處理-->
    <mvc:resources mapping="/static/**" location="/WEB-INF/static/" />  

檔案結構