- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 POST 将表单连接到另一个页面,但我一直收到错误:
Request method 'POST' not supported
Controller 中的 handleNext 方法如下所示:
@RequestMapping(value = PAGE_NAME, method = RequestMethod.POST)
public String handleNext(ModelMap map, HttpServletRequest request,
@ModelAttribute("indexBacking") IndexBacking bo, BindingResult result) {
return "redirect:/" + GameController.PAGE_NAME;
}
Game Controller 上的 GET 方法如下所示:
@RequestMapping(value = PAGE_NAME, method = RequestMethod.GET)
public String handleBasicGet(ModelMap map, HttpServletRequest request) {
return MODEL_NAME;
}
我的 Web.xml 如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>redirect.jsp</welcome-file>
</welcome-file-list>
</web-app>
任何想法都会很棒。
更新index.jsp 具有以下对支持对象的引用
<form:form action="index.htm" enctype="multipart/form-data"
method="post" commandName="indexBacking" accept-charset="UTF-8">
<table id="main">
${page_contents}
<tr>
<td></td>
<td>
<spring:bind path="name">
<form:input path="name" value="Name" />
<form:errors cssClass="vmessage"
element="div" path="name" />
</spring:bind>
</td>
<td>
<input type="submit" value="Submit" />
</td>
<td></td>
</tr>
</table>
</form:form>
并且支持对象似乎没有在此处设置名称字段:
public class IndexBacking {
private String name;
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
}
最佳答案
Request method 'POST' not supported
当以下事情出错时,这个错误 spring 会抛出:
POST
并且您没有任何 Controller 方法来处理对该 URL 的 POST 请求。@ModelAttribute
在 POST 处理程序方法中。来到
the backing object doesn't seem to set the name field here:
内部<spring:bind
你应该使用 status
像这样的对象:
status.value
:获取bean或属性的实际值。status.expression
: 用于检索 bean 或属性的表达式。status.errorMessages
:一组错误消息,由验证产生并且无需使用 <spring:bind..
当你使用 <form:form..
标签,两者几乎做同样的工作,而 <spring:bind..
用于执行一些自定义操作。所以选择<form:sorm..
中的任何一个& <spring:bind..
在您的情况下,您可以使用 <spring:bind..
解决问题喜欢:
<c:url value="/indexBackingUrl" var="pstUrl"/>
<form action="${pstUrl}" method="post" >
<table id="main">
<tr>
<td></td>
<td>Name:
<spring:bind path="indexBacking.name">
<input type="text"
name="${status.expression}"
value="${status.displayValue}"/>
<c:if test="${status.error}">
Error codes:
<c:forEach items="${status.errorMessages}" var="error">
<c:out value="${error}"/>
</c:forEach>
</c:if>
</spring:bind>
</td>
<td>
<input type="submit" value="Submit" />
</td>
<td></td>
</tr>
</table>
</form>
注意: name
属性在输入元素中很重要,因为 spring 使用输入元素的名称绑定(bind) bean 属性值。
或使用<form:form..
没有<spring:bind..
喜欢:
<form:form action="${pstUrl}" method="post" modelAttribute="indexBacking">
<form:label path="name">Name:</form:label>
<form:input path="name"/>
<form:errors path="name" element="div"/>
</form:form>
并在 Controller 的 GET 处理程序方法中添加 IndexBacking
键为 indexBacking
的 bean 实例制作作品<spring:bind..
在 jsp 中,如:
@RequestMapping(value="/indexBackingUrl", method = RequestMethod.GET)
public String handleNext(Model model) {
model.addAttribute("indexBacking", new IndexBacking("Jon"));
return "indexBacking";
}
Controller 中的 POST 处理程序方法如下所示:
@RequestMapping(value="/indexBackingUrl", method = RequestMethod.POST)
public String handleNextPost(ModelMap map, HttpServletRequest request,
@ModelAttribute("indexBacking") IndexBacking bo, BindingResult result) {
System.out.println(bo);
return "redirect:/someOtherUrl";
}
编辑:当您使用 enctype="multipart/form-data"
时在表格中,那么你应该注册CommonsMultipartResolver
bean 和commons-io-x.x.jar
& commons-fileupload-x.x.x.jar
应该可以用来制作 Spring 绑定(bind),否则你会得到 null
值,在你的情况下 enctype="multipart/form-data"
不需要,因为您不使用任何文件上传等。
关于java - 不支持发布方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23203215/
我们正在使用 VSTS 构建和发布通过 Xamarin 创建的 iOS 和 Android 应用程序。通过 VSTS 将 Android 应用发布到商店相对简单。有人可以指导我或提供一些如何通过 VS
我一直在研究 Spring Social Facebook 的 publish(objectId, connectionName, data) API ,但不确定此 API 的用法(遗憾的是,由于缺少
我正在使用 django viewflow 创建一个发布流程: 用户创建对象 它进入审核流程,其状态为待处理(公众不可见) 经过审核和批准后,就会发布并公开可见。 如果用户编辑同一实体,则会再次进入审
我正在尝试进行 API 调用,并且 API 需要格式为 XML: Security GetSessionInfo 999999999999 0 2 {
我已经查看了所有 StackOverflow,但没有找到适合我的案例的解决方案我有 405 HttpStatusCode 调用 API/Regions/Create 操作这是我的 baseContro
如果我切换到新版本的SpringBoot,我在启动应用程序时会得到上面的错误信息。这是为什么? 最美好的祝愿史蒂文 pom.xml 4.0.0 de.xyz.microservice spring
我有一个场景,页面导航是从一个域到另一个域完成的。例如,导航是从 http://www.foo.com到 http://www.bar.com在 JavaScript 中单击按钮 重定向时,我需要将用
这半年来一直深耕包头,这个城市比较不错,但是推进项目的难度确实挺大的。与开发产品相比,后者更省心。但是光研发产品,没有项目
我正在阅读有关 Github 版本 的信息,它似乎很适合您的项目。因为我们需要决定将哪些功能用于生产,哪些不用于。 我无法理解的部分是,master 和 release 分支如何在其中发挥作用。 Sh
我将一些代码推送到远程存储库,然后在 GitHub 上创建了第一个版本,并将其命名为 'v0.0.1'。 GitHub 现在显示我现在有一个版本,并且还在“标签”中显示我有一个标签 “v0.0.1”。
如果我有一个具有以下文件/文件夹结构的 GitHub 存储库 github.com/@product/template: /build /fileA /fileB /src /genera
我有一个 Maven 多模块项目。 当代码开发完成后,我们想在 Jenkins 中编写一个分支构建作业,它分支代码,增加主干中的 pom 版本,并删除 -SNAPSHOT 来自分支中的 pom 版本。
我有一个非常大的集合(约 40000 个文档,包含约 20-25 个字段,包括包含一组约 500 个项目的数组字段)和约 2000 个订阅者(他们现在只是机器人)。 因此,当用户订阅整个集合(不包括服
如果我正在使用消息队列构建一个包含数十个发布者/订阅者的系统,那么我似乎有一些网络配置选项: 我可以拥有一个所有机器都使用的集群代理 - 每台机器都没有本地队列 我可以在每台机器上本地安装代理,并使用
我正在使用 Flash Develop,并且创建了一个 ActionScript 3.0 项目。它启动并读取一个 xml 文件,其中包含图像的 url。我已将 url 保留在与 swf 相同的文件夹中
如果我在一个句子中使用 alloc 和 retain 声明一个 NSArray 那么我应该释放 NSArray 对象两次(即[arrayObject release] 2次)? 最佳答案 如果您在同一
我正在尝试在 Node 中实现发布/订阅模式,但不使用 Redis。功能应该是相同的;您可以发布到 channel ,订阅 channel 并收听数据(如果您已订阅);以下是 Redis 功能: pu
编辑:这个问题、一些答案和一些评论,包含很多错误信息。见 how Meteor collections, publications and subscriptions work准确理解发布和订阅同一服
我正在开发一款 DirectX 游戏,我发现在发布版本中我的平均帧速率为 170fps,但是在调试版本中我的帧速率约为 20fps。 我想知道发布和调试版本之间的巨大差异是否正常,特别是因为在调试中我
是否有办法回滚 Windows Azure 网站和 SQL 部署/发布? 我发布了一个网站,现在它导致了很多错误,我想回到之前的状态并进一步处理代码。 这可能吗? 最佳答案 如果您使用 Git 或 T
我是一名优秀的程序员,十分优秀!