1

我知道在 stackoverflow 上有一些关于 Spring Web-Application 中的静态内容的主题,但是在阅读了 5 篇并进行了大量尝试之后,我仍然看不到我的页面内容。我认为我的 jsp 文件有正确的路径。我的项目结构接缝如下:

我的项目结构

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ page contentType="text/html; charset=ISO-8859-1"%>

<!DOCTYPE HTML>
<html>
<head>

<link rel="stylesheet" type="text/css" href="<c:url value = '/css/stylesheet.css' />" />
<script type="text/javascript" src="<c:url value = '/js/restful.js' />"></script>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Snore-O-Meter</title>
</head>
<body>
<a href="javascript:HelloWorld()">Hello</a>
</body>
</html>

但我认为这是 web.xml 或 mvc-dispatcher-servlet.xml 的默认值:

web.xml

<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

<display-name>Spring MVC Application</display-name>

<servlet>
    <servlet-name>mvc-dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>mvc-dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

mvc-调度程序-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:context="http://www.springframework.org/schema/context"
   xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

<context:component-scan base-package="com.springapp.mvc"/>

<mvc:annotation-driven />

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix">
        <value>/</value>
    </property>
    <property name="suffix">
        <value>.jsp</value>
    </property>
</bean>

</beans>

谢谢你的帮助,我知道这是我对主题的无知,但是我有两本关于 Spring 的书,我找不到任何关于这个主题的有用信息,我真的需要工作真正的应用程序来学习 spring 和创建 web 应用程序.

4

1 回答 1

2

将所有资源文件夹(css、js、字体、图像等)放在一个公共resources文件夹下。然后添加一个资源处理程序

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

然后,您可以将映射更改为,例如

<script type="text/javascript" src="<c:url value = '/resources/js/restful.js' />"></script>
于 2013-09-02T22:18:41.240 回答