0

试图在 Spring/Hibernate 中做一个非常简单的表单。它应该向数据库添加一个条目。这是基于一个对我有用的例子,所以很奇怪我会得到这个错误。但是它就是这样啊。

这是带有表单的页面:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>

<html>
<head><title>Add Owned Game</title></head>
<body>
<h1>Add Owned Game</h1>

<br />
<br />
<c:url var="saveGameeUrl" value="/games/save.html" />
<form:form modelAttribute="game" method="POST" action="${saveGameUrl}">
    <form:label path="title">Game Title:</form:label>
    <form:input path="title" />
    <br />
    <input type="submit" value="Add Game" />
</form:form>


</body>
</html>

这是相关的控制器方法:

@RequestMapping(value = "/save", method = RequestMethod.POST)
public ModelAndView saveGame(@ModelAttribute("game") Game game,
        BindingResult result) {
     gameService.addOwnedGame(game);
    return new ModelAndView("redirect:/games/owned.html");
}

如果你还需要看什么,请告诉我。

4

1 回答 1

2

看起来您正在发布到 HTML 页面(应该是静态的),而不是路由到控制器的 /save 页面。还有,是不是笔误?c:url 命名为saveGameeUrl,带有两个 E,而动作在 Game 上只有一个 e。

<c:url var="saveGameeUrl" value="/games/save.html" />
<form:form modelAttribute="game" method="POST" action="${saveGameUrl}">
于 2012-07-11T23:37:30.390 回答