在Spring Web MVC应用程序中使用CSS和JSP

时间:2016-11-13 18:36:49

标签: css jsp spring-mvc servlets

我试图找出如何使用存储在我的资源文件夹中的外部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>

Folder Structure

我也相信它是一个更好的结构,可以将我的资源文件放在src / man / resources中,我也尝试使用它,但得到与上述问题相同的结果。

解决方案:

Full Folder Structure

2 个答案:

答案 0 :(得分:0)

您的资源文件夹位于错误位置。

将其放入直接textBox1.Leave += (o, e) => { textBox1.Focus(); }; 或{。}}的webapp文件夹中 更改webapp/WEB-INF/resources中的路径。更好的方法是将文件夹移出servletConfig.xml

答案 1 :(得分:0)

问题是我的maven项目正在从我的WebContent文件夹而不是src / main / webapp中提取我需要使用的文件。