0

我正在尝试在两个页面之间进行简单导航,但出现错误,我无法解决

第一页是我home.jsp在这里我做一个链接

<a href="/timecard/NewAccount"><FONT COLOR="#40C0FF">Create New Account</FONT></a>

然后我创建帐户文件夹,我必须保存文件createAccount.jsp-这是我的目标页面,并views.xml带有此源

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 2.1//EN" "http://tiles.apache.org/dtds/tiles-config_2_1.dtd">
<tiles-definitions>
<definition extends="default" name="createNew">
<put-attribute name="body" value="/WEB-INF/views/accounts/createAccount.jsp"/>
</definition>

</tiles-definitions>

和我的AccountsController

@Controller
@RequestMapping(value="/timecard/newAccounts")
public class AccountsController {


@RequestMapping(method=RequestMethod.GET)
public String accountForm(Model model){

    return "createNew";
}

}

所以当我点击home.jsp页面中的链接时找不到,这是消息

WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/timecard/NewAccount] in DispatcherServlet with name 'appServlet'

我真的很困惑。你能告诉我我做错了什么吗?提前致谢

4

1 回答 1

0

您在 href 标签中使用了错误的 url。在您的控制器中,您已映射 url /timecard/newAccounts

因此,您需要将href更改为${pageContext.servletContext.contextPath}/timecard/newAccounts然后重试。

希望这对您有所帮助。干杯。

于 2012-10-29T09:21:59.480 回答