0

当我在第一次转发(然后成功转发)中有如下示例的路径时,这意味着什么

<action
            type="com.testpackage.servlettest"
            path="/ClassHomepage"
            scope="request">
            <forward
                name="success"
                path=".class.homepage"
                redirect="true" />
            <forward
                name="failure"
                path="/Homepage.do"
                module="/"
                redirect="false" />
        </action>

我知道如果返回“失败”,失败转发将转发到页面“/Homepage.do”

return mapping.findForward("failure");

但是如果我回来会发生什么

return mapping.findForward("success");

这将尝试加载什么包?web.xml我如何通过查看和struct-config.xml文件找出答案?

4

1 回答 1

0

您正在使用瓷砖,您需要查看瓷砖定义文件(通常类似于WEB-INF/tiles-defs.xml)。搜索 a<definition name=".class.homepage"> ... </definition>以找出它将指向哪个视图。

于 2015-06-11T21:51:58.253 回答