我的应用中,有个产品由哪个单位供应,所以在录入产品的时候供应商(厂家)希望是下来选择:
使用<s:select>一直报错:
tag 'select', field 'list', name 'supplierId': The requested list key '#product.getComPanys' could not be resolved as a collection/array/map/enumeration/iterator type. Example: people or people.{name} - [unknown location]
我分别采用了4中方法:上面报错只是其中一种,但4中方法报错都一致。。。我google、baidu了 看了N多贴依然是解决不了超级郁闷,还请给位多指教!!!
下面贴出我的类以及处理方法:
ProductAction
package model.activion;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import model.service.CompanyService;
import model.service.ProductService;
import org.springframework.beans.factory.annotation.Autowired;
import util.UtilRandow;
import util.UtilString;
import com.opensymphony.xwork2.ActionSupport;
import entity.Company;
import entity.Product;
@SuppressWarnings("serial")
public class ProductAction extends ActionSupport {
@Autowired
private ProductService productService;
@Autowired
private CompanyService companyService;
private String productNo;
private String productName;
private String supplierId;
private List<Company> comPanys; [color=red]//第一种与第二种都采用List赋值[/color]
private HashMap mapCom; [color=red]//第三种 才偶那个Map赋值[/color]
//保存产品
public String saveProduct(){
Product product = new Product();
product.setProductNo("CP"+UtilRandow.getDateRandow());
product.setProductName(productName);
product.setSupplierId(supplierId);
boolean falge = productService.addProduct(product);
if (falge==true) return SUCCESS;
else return ERROR;
}
public String getProductNo() {
return productNo;
}
public void setProductNo(String productNo) {
this.productNo = productNo;
}
public String getProductName() {
return productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public void setSupplierId(String supplierId) {
this.supplierId = supplierId;
}
public String getSupplierId() {
return supplierId;
}
[color=red]//Map 取值方法获取数据库种所有的company [/color]
public HashMap getMapCom() {
List<Company> ls = this.companyService.queryCompany(null, null);
for(Company c :ls){
mapCom.put("companyId",c.getCompanyId());
mapCom.put("companyName", c.getCompanyName());
}
return mapCom;
}
public void setMapCom(HashMap mapCom) {
this.mapCom = mapCom;
}
[color=red]//List 取值方法获取数据库种所有的company [/color]
public List<Company> getComPanys() {
List<Company> comPanys = new ArrayList<Company>();
comPanys = this.companyService.queryCompany(null, null);
return comPanys;
}
public void setComPanys(List comPanys) {
this.comPanys = comPanys;
}
}
UtilBean:只是其中一个方法有使用 //第四种采用<s:bean>的方式赋值
package model.bean;
import java.util.ArrayList;
import java.util.List;
import model.service.CompanyService;
import org.springframework.beans.factory.annotation.Autowired;
import util.UtilString;
import entity.Company;
public class UtilBean {
@Autowired
private CompanyService companyService;
private List<Company> lc = new ArrayList<Company>();
public List<Company> getLc() {
List<Company> listCom = this.companyService.queryCompany(null, null);
if (UtilString.isEmpty(listCom)) lc = null;
else lc = listCom;
return lc;
}
public void setLc(List<Company> lc) {
this.lc = lc;
}
}
Struts.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="model.activion" extends="struts-default">
<!-- 输入校验-->
<action name="validateProduct"
class="model.activion.ProductAction">
<result name="input">/jsp/product.jsp</result>
</action>
<action name="addProduct" class="model.activion.ProductAction"
method="saveProduct">
<result name="success">/jsp/success.jsp</result>
<result name="error">/jsp/error.jsp</result>
<result name="input">/jsp/product.jsp</result>
</action>
</package>
</struts>
JSP界面:product.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>产品信息</title>
<s:head theme="ajax"/>
</head>
<body>
<center>
<s:tabbedPanel id="productList" theme="ajax" doLayout="false" closeButton="pane"
labelposition="top" selectedTab="product" >
<s:div id="product" theme="ajax" label="基本信息">
<s:form action="validateProduct" validate="true">
<s:textfield name="productNo" label="产品编号" readonly="true" />
<s:textfield name="productName" label="产品名称" required="true" />
<!-- 第1种 List-->
<s:select list="companys" listKey="companyId"
listValue="companyName" name="supplierId" label="厂家名称"
headerKey="" headerValue="" />
<!-- 第2种 List-->
<s:action name="product" id="getComPanys" />
<s:select list="#product.getComPanys" listKey="companyId"
listValue="companyName" name="supplierId" label="厂家名称"
headerKey="" headerValue="" />
<!-- 第3种 Map-->
<s:select list="mapCom" key="companyId"
value="companyName" name="supplierId" label="厂家名称"
headerKey="" headerValue="" />
<!-- 第4种 List-->
<s:bean id="ub" name="model.action.UtilBean" />
<s:select list="#ub.lc" listKey="companyId"
listValue="companyName" name="supplierId" label="厂家名称"
headerKey="" headerValue="" />
<s:submit value="确定" action="addProduct" />
<s:reset value="重置" />
</s:form>
</s:div>
<!-- 图片上传未处理 -->
<s:div id="image" theme="ajax" label="图片上传">
<s:form>
<s:textfield name="productName" label="产品名称"/>
<s:file name="file" accept="jpeg/gif/*" label="图片一"/>
<s:file name="file" accept="jpeg/gif/*" label="图片二"/>
<s:file name="file" accept="jpeg/gif/*" label="图片三"/>
<s:submit value="上传" />
<s:reset value="重置" />
</s:form>
</s:div>
</s:tabbedPanel>
</center>
</body>
</html>
分享到:
相关推荐
`<s:set>` 赋值给变量,`<s:sort>` 对集合进行排序,`<s:submit>` 创建提交按钮,`<s:subset>` 输出集合的子集。 T. `<s:tabbedPanel>, <s:table>, <s:text>, <s:textarea>, <s:textfield>`: 创建选项卡面板、表格...
3. `<s:select>`:创建单选选择框,可以是静态或动态数据。 4. `<s:set>`:设置变量,可以在特定范围内赋值。 5. `<s:sort>`:对列表进行排序,可以通过自定义比较器。 6. `<s:submit>`:创建提交按钮,用于提交表单...
2. `<s:set>`:创建一个变量并赋值,常用于在JSP页面中传递数据。例如,`<s:set var="myVar" value="Hello World!"/>`。 3. `<s:if>`和`<s:else>`:用于条件判断,与Java中的if...else语句类似,方便在视图层进行...
`<c:choose>`标签用于条件判断,它可以包含一个或多个`<c:when>`子标签以及一个可选的`<c:otherwise>`子标签。每个`<c:when>`子标签定义了一个条件测试,如果测试结果为真,则执行该`<c:when>`块内的代码;如果所有...
6. `<s:select>`:用于创建下拉选择框,可以动态加载选项数据。 UI类标签的一个关键特点是它们能自动处理Action的验证错误,通过`<s:fielderror>`或`<s:actionerror>`标签显示错误信息。 二、非UI类标签 非UI类...
- `<s:select>`:创建单选下拉列表。 R. 操作按钮: - `<s:submit>`:创建提交按钮,用于提交表单。 以上只是Struts2标签库的一部分,实际使用中还有更多标签用于处理各种需求,如循环、标签迭代、验证等。这些...
这里`<ww:set>`将字符串`'aaaaaaaaaaaaaa'`赋值给`tt1`变量,`<ww:property>`标签则用于获取这个变量的值并在页面上显示。 `<ww:property>`标签用于显示模型对象的属性值,它可以从页面作用域、请求作用域、session...
2. `s:set`:设置变量,如 `<s:set name="myVar" value="Hello World" />` 可以将“Hello World”赋值给名为myVar的变量。 3. `s:if` 和 `s:else`:条件判断,与Java的if-else语句类似,用于控制页面元素的显示。 4....
Item <bean:write name="index" />: <bean:write name="item" /><br/> </logic:iterate> ``` ##### 2. logic:present 用于判断某个对象是否存在于某个作用域内。 **示例代码**: ```jsp <logic:present name=...
例如,在提供的代码片段中,可以看到`<%@ taglib prefix="s" uri="/struts-tags"%>`引入了Struts2的标签库,这使得在JSP中可以方便地使用OGNL表达式来操作页面上的Java对象。 ```jsp <%request.setAttribute("sex",...
`<c:out>`、`<c:set>`、`<c:if>`都是JSTL标签(ABC正确),`<c:errors>`通常用于显示验证错误,也是JSTL的一部分(D正确)。 15. Struts框架理解: Struts可以处理上传功能(A错误),基于MVC模式(B正确),可能...
`<Data-sources>`标签主要用于配置Struts1应用程序的数据源,即与数据库的连接方式。这一配置对于实现数据持久化至关重要。 ##### 2.1 数据源配置 - **标签**: `<data-source>` - **类型** (`type`):指定了数据源...
<s:select name="country" list="{'China','USA','Japan'}" headerKey="-1" headerValue="--Select Country--"/> </body> </html> ``` **3. 结果(Results)** - **定义**:结果(Results)定义了动作执行完成...
HashMap<String, Object> map = new HashMap<>(); map.put("BM", "001"); // BM对应数据库中的某个字段 map.put("MC", "小苹果"); // MC对应展示给用户看的文本 sjxList.add(map); // 将map添加到List集合中 } `...
`<s:select>`是Struts2框架的一个标签,用于创建可选列表,其属性如`list`、`listKey`和`listValue`分别用于指定数据源、键和值字段。 总结一下,这个案例涉及到的知识点包括: 1. JavaScript事件处理:`change()`...
- `下拉框的赋值问题.txt`:在JSP中,使用`<s:select>`标签可以方便地为HTML select元素填充选项,这些选项可以从后台数据源动态生成。需要注意的是,正确设置list属性和value属性以确保正确绑定数据。 8. **多表...
本文将详细介绍如何在Struts2框架下利用Ajax技术为下拉框动态赋值,这是一个适用于所有下拉列表的通用方法。 首先,我们需要创建一个实体类来存储下拉框的选项信息。这个实体类称为`DictionaryBean`,包含三个属性...
shtml += "<tr><td>" + rs("st_id") + "</td><td>" + rs("st_name") + "</td><td>" + rs("password") +"</td></tr>"; rs.moveNext; } shtml += "</table>"; document.write(shtml); ``` 在上面的代码中,我们首先...
List<userInfo> userList = new ArrayList<>(); while (rs.next()) { userInfo user = new userInfo(); // 设置user对象的属性值 user.setUsername(rs.getString("username")); // 其他属性赋值... userList....
本书是广受赞誉的Struts 2优秀教程,它全面而深入地阐述了Struts 2的各个特性,并指导开发人员如何根据遇到的问题对症下药,选择使用最合适的特性。作者处处从实战出发,在丰富的示例中直观地探讨了许多实用的技术,...