Аннотация управляемая Spring 2.5 MVC не работает - PullRequest
1 голос
/ 28 декабря 2011

Я пробую очень простой Spring MVC, который отображает только приветственное сообщение.

Мой web.xml выглядит следующим образом:

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5"
 xmlns="http://java.sun.com/xml/ns/javaee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
 <display-name>courtannotation</display-name>
 <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>/WEB-INF/courtannotation-servlet.xml</param-value>
 </context-param>
 <listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>
 <servlet>
  <servlet-name>courtannotation</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <load-on-startup>1</load-on-startup>
 </servlet>
 <servlet-mapping>
  <servlet-name>courtannotation</servlet-name>
  <url-pattern>*.htm</url-pattern>
 </servlet-mapping>
</web-app>

Мой файл конфигурации bean выглядит следующим образом:

<?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:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
    <context:component-scan base-package="com.apress.springrecipes.court.web" />

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

    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
    <bean id="messageSource"
        class="org.springframework.context.support.ResourceBundleMessageSource">
        <property name="basename" value="messages" />
    </bean>    
</beans>

Мой контроллер - WelcomeController выглядит следующим образом:

package com.apress.springrecipes.court.web;

import java.util.Date;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;

@Controller
@RequestMapping("/welcome.htm")
public class WelcomeController {

    @Autowired
    public WelcomeController() {

    }

    @RequestMapping(method = RequestMethod.GET)
    public ModelAndView welcome() {
        Date today = new Date();
        return new ModelAndView("welcome", "today", today);
    }
}

В библиотеке WEB-INF у меня есть следующие файлы jar:

  1. spring.jar
  2. spring-webmvc.jar
  3. spring-context.jar
  4. spring-context-support.jar

В пути к классам у меня есть сервлет-api.jar.Я использую Spring 2.5.5, Eclipse Indigo, плагин Spring IDE для Eclipse, Java 1.6, Windows XP, jBoss-5.1.0.http://localhost:8080/courtannotation/welcome.htm приводит к [PageNotFound] Не найдено сопоставление для HTTP-запроса с URI [/courtannotation/welcome.htm] в DispatcherServlet с именем 'courtannotation'.Мой welcome.jsp выглядит следующим образом:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ 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><spring:message code="welcome.message" text="Welcome to Court Reservation System"/></title>
</head>
<body>
<fmt:formatDate value="${today}" pattern="yyyy-MM-dd"/>
</body>
</html>

Мой message.properties выглядит следующим образом:

welcome.title=Welcome
welcome.message=Welcome to Court Reservation System

Что мне здесь не хватает?Просьба помочь.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...