commandName带有
springform:form标签的多个属性是不可能的。
(该实现
org.springframework.web.servlet.tags.form.FormTag只有一个字段来保存此值)。
最简单的解决方案(可以有效地工作)将使用包装器命令对象,该对象必须具有字段。
public class CombinedCommand() { Activity activity; Etabl etabl; //Getter and setter}
jsp:
<form:form action="${pageContext.request.contextPath}/ajouter_activite" method="post" commandName="combinedCommand""> ... <form:input type="text"path="activity.x"/> ... <form:input type="text"path="etabl.y"/> ...</form:form>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)