0

こんにちは、Requestmapping を使用しようとしていますが、機能しません。

HelloController.java

package com.project.springapp;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
@RequestMapping("/Springapp/hello")
public class HelloController {

@RequestMapping(method = RequestMethod.GET)
public String Hello(){
    return "hello";
}

}

サーブレット-context.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org
/schema/mvc/spring-mvc-3.0.xsd
    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">

<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />

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

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

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


<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <beans:property name="prefix" value="/WEB-INF/views/" />
    <beans:property name="suffix" value=".jsp" />
</beans:bean>

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

 </beans:beans>

Web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app 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">

<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-
class>
</listener>

<!-- Processes application requests -->
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

</web-app>

コードを実行すると、コンソールにこの警告が表示されます

警告: [SetContextPropertiesRule]{Context} プロパティ「ソース」を「org.eclipse.jst.jee.server:Springapp」に設定すると、一致するプロパティが見つかりませんでした。

次に最初のページに移動しますが、この URl を入力するhttp://localhost:8080/Springapp/hello と、コンソールに次のメッセージが表示されます。

WARN : 「org.springframework.web.servlet.PageNotFound - 名前が 'appServlet' の DispatcherServlet で、URI [/Springapp/hello] の HTTP リクエストのマッピングが見つかりませんでした」

ありがとう。

4

1 に答える 1

1

URL へのエンドポイントとして、クラス メソッドへのマッピングを追加する必要があります。たとえば、にアクセスするhttp://localhost:8080/Springapp/helloには、次のようにします。

package com.project.springapp;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
@RequestMapping("/Springapp")
public class HelloController {

@RequestMapping("/hello")
public String Hello(){
    return "hello";
}

}

また、「/Springapp/hello」の前に、URL にアプリケーション コンテキスト パスを含める必要がある場合もあります。

于 2012-08-18T17:38:19.607 に答える