0

我在 MyController 中有一个代码

 @RequestMapping("/hello.jsp")
    public void handleRequest() {
        System.out.println("hello.jsp");
        logger.info("Returning hello view");
    }

    @RequestMapping("/hello2")
    public ModelAndView hello2() {
        System.out.println("123");
        String message = "Hello World, Spring 3.0!";
        return new ModelAndView("hello2", "message", message);
    }

在 dispatcher-servlet.xml 我有:

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

最后我有:

~8080/hello2.htm - OK
~8080/hello.htm  - NOT OK, aloso I tried: hello.jsp, hello; moved hello.jsp to /WEB-INF/jsp/ and to/WEB-INF/ - no effect 


1.hello2() is working well, and redirecting to the hello2.jsp
2.hello() is NOT working, and NOT redirecting

在将“viewResolver”放入 dispatcher-servlet.xml 之前,我有相反的行为 - hello() 正在工作 hello2() 不是。[但后来我的所有 jps 都在 WEB-INF 文件夹中]

是什么原因?

我的 web.xml 包括:

  <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>*.htm</url-pattern>
    </servlet-mapping>
4

2 回答 2

0

我认为这是因为您正在返回 void而不是视图名称。

@RequestMapping("/hello")
public String handleRequest() {
    System.out.println("hello.jsp");
    logger.info("Returning hello view");
    return("hello");
}
于 2012-12-20T21:18:43.690 回答
0

这是因为 '/hello.jsp' - 它试图找到 '/hello.jsp.jsp',因为我定义了 'viewResolver' 为:后缀“value=".jsp”。

之前:没有'viewResolver',我猜它的行为是一些默认逻辑。

于 2012-12-20T23:41:06.237 回答