标签:
1. 搭建struts2 的步骤: 3个步骤
2. action VS Action
下面例子中的函数方法名 setProductName 必须和JSP 页面中productName 的名字一致:
public void setProductName(String productName) {
this.productName = productName;
}
<form action="product-save.action" method="post">
productName: <input type="text" name="productName"/>
<br><br>
productDesc: <input type="text" name="productDesc"/>
<br><br>
productPrice: <input type="text" name="productPrice"/>
<br><br>
<input type="submit" name="Submit"/>
<br><br>
</form>
标签:
原文地址:http://www.cnblogs.com/shi-yi-ge/p/5561634.html