我想弄清楚如何使用存儲在我的jsp頁面的資源文件夾中的外部css文件。到目前爲止,我基於研究嘗試了一些不同的東西,但還沒有找到解決方案。在Spring Web MVC應用程序中使用CSS和JSP
JSP
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ProjectX</title>
<link rel="stylesheet" href="${pageContext.request.contextPath}/resources/css/homepage.css" />
</head>
<body>
<h1>The message of the day is:</h1>
<p>${titleHomepage}</p>
</body>
</html>
servletConfig.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">
<mvc:annotation-driven/>
<context:component-scan base-package="com.controllers"></context:component-scan>
<mvc:resources mapping="/resources/**" location="/resources/"/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/pages/" />
<property name="suffix" value=".jsp" />
</bean>
我也相信它的結構更合理放置的src /人/資源在我的資源文件我也嘗試過,但得到了相同的結果作爲上面的問題。
發現的解決方案:
所以我有點困惑你的評論。你說要將我的資源文件夾放在webapp文件夾中,但不是webapp/resources?我已經重新定位了我的資源文件夾,因此它現在駐留在webapp中,而不是WEB-INF中,但仍然無法訪問CSS文件。 – Brenton
這只是一個錯誤,而輸入.....抱歉。您是否重新部署並重新啓動了服務器?您在瀏覽器控制檯中遇到的錯誤是什麼? –
我也注意到我有一個位於src/main/webapp的WEB-INF文件夾和位於WebContent文件夾內的另一個WEB-INF文件夾。我不確定不同的和我應該使用哪一個。 – Brenton