2014-10-08 52 views
0

我曾參觀過以前的相關的問題找到解決辦法,但我沒有......鏈接CSS文件.JSP在Spring框架 - 版本-4.1.0

How to use "css" in the "jsp" in Spring MVC project?

including style sheet in a jsp page with Spring MVC

我問題是我如何在Spring MVC中將css文件鏈接到.jsp文件,這個問題被很多人問及!但不幸的是,這些解決方案無法實現。

文件結構是 - http://i.imgur.com/8M3xpp5.png

請給你的方向,謝謝。

回答

1

我能做到這一點有以下

<style type="text/css"><%@ include file="/css/bootstrap.css" %> </style>

其中bootstrap.css是我的CSS文件和文件夾結構是相似的。嘗試一次。

+0

感謝@nagamanojv,將嘗試... – 2014-10-08 09:47:31

+0

你的意思是這樣的... < style type =「text/css」><%@ include file =「css/bootstrap.css」%> – 2014-10-08 09:59:08

+0

是的。您在file = ...中提到的css文件路徑與您的WebContent目錄相關。由於您在WebContent下直接具有「css」目錄,因此上面應該足夠了。 – nagamanojv 2014-10-08 10:04:40

1

附加按照您的彈簧調度-servlet.xml中

<mvc:resources mapping="/css/**" location="/css/" /> 

希望線,這將幫助你

+1

感謝您的幫助! – 2014-10-08 10:25:43