0

Java Web App から画像、スタイル シート、スクリプトなどの静的リソースを提供しようとする際によく見られる問題を解決しようとしています。他のスレッドで提供されている多くのソリューションを試しましたが、どこにも行きませんでした。リソース呼び出しで 404 エラーが発生しただけです。

他に考えられる唯一のことは、Tomcat 7 で実行しているということですが、6 を入れようとすると、「サーバーは J2EE Web モジュール仕様のバージョン 3.0 をサポートしていません」というメッセージが表示されます。エラーなので、うまくいかないようです。誰かが私が間違っているかもしれないという考えを持っていますか?

私のプロジェクトは次のように構成されています。

WebContent

    META-INF

    Resources

        CSS

        Images

            close.jpg

        Scripts 

    WEB-INF

        Lib

        Views

            index.jsp

Web.xml

<servlet>
    <servlet-name>spring</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

春のサーブレット

<?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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
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="uk.ac.ncl.controllers" />

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

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" />

<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
    <property name="prefix" value="/WEB-INF/views/" />
    <property name="suffix" value=".jsp" />
</bean>

私のコントローラー

@RequestMapping(value="/", method = RequestMethod.GET)
public String index()
{
    return "index";
}

私の見解

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<html>
    <head>
        <title>Spring 3.0 MVC Series: Index - ViralPatel.net</title>
    </head>
    <body>
        <h1>Page with image</h1>
        <!-- use c:url to get the correct absolute path -->
        <img src="<c:url value="/resources/images/close.png" />" />
        <img src="http://localhost:8080${pageContext.request.contextPath}/resources/images/close.png" />
    <a href="map">View Map</a>
</body>

4

1 に答える 1

0

大文字と小文字を区別する問題になる可能性はありますか?あなたのhtmlは/resources/imagesと言っていますが、あなたのツリーは次のように見えます/Resources/Images

于 2012-06-04T17:18:13.653 に答える