0

Spring MVC で作業を開始したいのですが、単純な例を調整できません。あるjspから別のjspに1つのパラメーターを渡したいだけですが、エラーがあります:

HTTP ステータス 404 - /controller/results.jsp タイプ ステータス レポート メッセージ /controller/results.jsp 説明 要求されたリソース (/controller/results.jsp) は利用できません。アパッチ トムキャット/7.0.12

私の web.xml コード:

<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>/home</url-pattern>
        </servlet-mapping>

サーブレット-context.xml

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

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

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <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="edu.demidov.controller" />

</beans:beans>

コントローラー.java

@Controller
public class HomeController extends HttpServlet{

    private static final long serialVersionUID = 4825408935018763217L;  

    private static final Logger logger = LoggerFactory.getLogger(HomeController.class);      

    EducationDaoInterface educationDaoIntfc;

    @RequestMapping(value="/home", method=RequestMethod.GET)
    public ModelAndView  firstActionPage() {    

        return new ModelAndView("home");

    }


    @RequestMapping(value = "/result.jsp", method=RequestMethod.GET)
    public String SecondActionPage(@RequestParam String firstname, Model model) throws IOException {

        model.addAttribute("myname", firstname);

        return "result";

    }

結果.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!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=UTF-8">
<title>Insert title here</title>
</head>
<body>

Hello form result.jsp

First name: ${myname}

</body>
</html>

ホーム.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!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=UTF-8">
<title>Insert title here</title>
</head>
<body>

<form name="myform" action="<c:url value="/results.jsp"/>" method="GET">

<input type="text"  name="firstname"/>

<input type="submit"/>

</form>

</body>
</html>

ありがとう。

4

4 に答える 4

1

URL マッピングが間違っています。

解決策は 2 つあります。

1.

コントローラーの SecondActionPage 関数の URL マッピングを次のように変更できます。

@RequestMapping(value = "/result", method=RequestMethod.GET)

また、Home.jsp のフォーム アクションを次のように変更します。<c:url value="/results"/>

2.

appServlet の url-pattern を に変更できます/*。これは、Spring Web アプリケーションでの url-pattern の標準的な方法です。そして、ソリューション 1 で提案したように、home.jsp のリクエスト マッピングとアクションを変更する必要があります。

解決策 2 をお勧めします。これがベスト プラクティスです。

これがお役に立てば幸いです。:)

于 2013-06-05T03:45:49.510 に答える
0

によって処理されるため、拡張子付きの jsp ファイルの完全な名前を指定する必要はありませんorg.springframework.web.servlet.view.InternalResourceViewResolver

フォーム アクションを次のように変更します。

<form name="myform" action="result" method="GET"> //check spelling and remove '/' from url

そしてコントローラーのマッピング先:

@RequestMapping(value = "/result", method=RequestMethod.GET)

これがお役に立てば幸いです。

于 2013-06-05T11:01:02.963 に答える
0

ホームjspから別のコントローラーURLへの送信ボタンをクリックすると、すべての結合が行われた後、これを取得しました。

 `http://localhost:8080/controller/result?firstname=Vadim

すべてをコントローラーに正しく渡しているようですが、なぜresult.jspページが表示されないのですか

HTTP ステータス 404 - /コントローラー/結果

タイプ ステータス レポート

メッセージ/コントローラ/結果

説明 要求されたリソース (/controller/result) は利用できません。

アパッチ トムキャット/7.0.12

于 2013-06-05T16:00:17.473 に答える
0

これを試して

<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>




@RequestMapping(value="/home", method=RequestMethod.GET)
    public ModelAndView  firstActionPage() {    
    return new ModelAndView("home");
}


@RequestMapping(value = "/result", method=RequestMethod.GET)
public String SecondActionPage(@RequestParam String firstname, Model model) throws IOException {
    model.addAttribute("myname", firstname);
    return "result";
}

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!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=UTF-8">
        <title>Insert title here</title>
    </head>
<body>

    <form name="myform" action="/result" method="GET">
        <input type="text"  name="firstname"/>
        <input type="submit"/>
    </form>

</body>
</html>
于 2013-06-05T10:51:10.703 に答える