1
我正嘗試使用dispatcher-servlet.xml中的以下配置從本地磁盤加載圖像。如何在根彈簧應用程序外映射圖像
<bean>
<mvc:resources mapping="/imageCDN/**" location="file:/L:/JAVA/IDE/imageCDN/"/>
</beans>
並嘗試訪問我的jsp頁面中的相同,如下所示。
<img alt="" src='<c:url value='/imageCDN/${product.productId}.png'/>' style="width: 100%; height: 300px">
但是,這是如何得到映射。 while inspecting the code in browser-musicapp is the root.
我不確定這個方法,有人可以幫我解決嗎?