为什么请求没有从hello.jsp转移到控制器?

时间:2016-11-17 10:12:56

标签: spring

我是MVC的新手。

我正在尝试使用Spring MVC构建一个简单的hello world应用程序。 我收到404错误,因为href没有转到hello.jsp。我的WEB-INf和索引下有我的hello.jsp,jsp在Web应用程序下。以下是我的应用程序代码。提前谢谢大家

import {Component, HostListener} from "@angular/core";

...
enter code here
...

@HostListener('click', ['$event'])
onClick(e) {
   console.log(e);
}

1 个答案:

答案 0 :(得分:0)

将您的控制器更改为GET

@RequestMapping(value = "/hello",method = RequestMethod.GET)
    public ModelAndView mymethod(){
        return new ModelAndView("hello","msg","Hello First Spring");
    }

同时更改您的web.xml

 <servlet-mapping>
        <servlet-name>spring</servlet-name>
        <url-pattern>/*</url-pattern>
 </servlet-mapping>