我正在使用彈簧3.0.7爲我的Web應用程序。我想在一個CSS文件中像這樣從我的資源位置加載圖像:春季CSS圖像加載
.tag {
background: transparent url(/resources/img/bg.gif) no-repeat;
background-position: 0 50%;
padding-left: 50px
}
我可以輕鬆地將我的靜態資源的JSP文件,如下圖所示沒有任何問題:
<c:url value="/resources/css/main.css" />
我靜資源處理程序已配置如下圖所示:
<mvc:resources mapping="/resources/**" location="/web-resources/"/>
至於說ealier,我可以加載在JSP文件資源沒有問題,但不能讓圖像在我的CSS加載。任何人都可以幫助加載圖像的CSS文件!
圖片沒有加載? –
我無法加載圖像 - 是的! – Bitmap