1. 程式人生 > >springMVC專案中JSP頁面不顯示圖片

springMVC專案中JSP頁面不顯示圖片

要在spring檔案中配置靜態檔案引用,有兩種方式:

一       <mvc:default-servlet-handler/>  

二    <mvc:resources mapping="/images/**" location="/images/" />
<mvc:resources mapping="/static/**" location="/static/" />
<mvc:resources mapping="/mealimages/**" location="/mealimages/" />

        ……