2017-09-06 10 views
0

私は最初のspring mvcアプリケーションを開発し、上記のエラーを取得しようとしています。 同じ例外の解決策がたくさん見つかりましたが、解決策が見つかりませんでした。ここ私はいつも、Spring MVCアプリケーションでGet HTTP-404エラーを受け取ります。

は私のweb.xmlのある

<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:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:mvc="http://www.springframework.org/schema/mvc" 
xmlns:tx="http://www.springframework.org/schema/tx" 
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.1.xsd 
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd  
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"> 

    <context:component-scan base-package="m"/> 
<mvc:default-servlet-handler /> 


    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
    <property name="prefix"> 
    <value>/WEB-INF/</value> 

    </property> 
    <property name="suffix"> 
    <value>.jsp</value> 
    </property> 
    </bean> 
</beans> 

index.jspを

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" 
    pageEncoding="ISO-8859-1"%> 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 

<html> 
<head> 
<meta charset="ISO-8859-1"> 
<title>Insert title here</title> 
</head> 
<body> 
<form action="/Hello.ds"> 
NAME : <input type="text" name="hello"> 
<input type="submit" value="OK"> 
</form> 
</body> 
</html> 

コントローラ

@org.springframework.stereotype.Controller 
public class jnk { 
@RequestMapping("/Hello") 
    public ModelAndView handleRequest(HttpServletRequest r,HttpServletResponse res) throws Exception{ 

     String name=r.getParameter("name"); 
     ModelAndView m=new ModelAndView("success"); 
     m.addObject("MSG", name); 
     return m; 
    } 

} 

私のJSPファイルは、WEB-INF/ ディレクトリの下に置かれている

パッケージ名は次のとおりです。メートル

コントローラは /Helloを(参照: @RequestMapping("/Hello")を)という名前のマッピングを公開
+0

JSPを使用していることがわかりました。このサンプルプロジェクトをSpringブートから見直して、基本的なJSP設定を確認することをお勧めします。 https://github.com/spring-projects/spring-boot/tree/v1.5.6.RELEASE/spring-boot-samples/spring-boot-sample-web-jsp/src/main –

答えて

1

(しかし、あなたのフォームが/Hello.dsに提出しようとしています<form action="/Hello.ds">を参照)。

+0

私はchamge @RequestMapping( "/Hello ")を@RequestMapping("/Hello.ds ")に追加しても、まだ動作せず、エラーが発生するHTTP Status 404 - /Hello.ds description要求されたリソースは利用できません。 –

関連する問題