我是Struts 2的新手并试图查看是否可以使用值列表填充下拉框但仍然无法使其正常工作。
以下是我的Action类(Portal.java):
public class Portal extends ActionSupport {
private Map Products;
private String product;
public Portal(){
Products = new HashMap();
Products.put("1", "Java");
Products.put("2", "C++");
}
public Map getProducts() {
return Products;
}
public void setProducts(Map Products) {
this.Products = Products;
}
public String getProduct() {
return product;
}
public void setProduct(String product) {
this.product = product;
}
public String execute() {
return SUCCESS;
}
}
以下是我的Portal.jsp:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Portal</title>
</head>
<body>
<h2>Portal</h2>
<s:form action="result" namespace="/">
<h4>
<s:select label="Select Product"
name="product"
headerKey="-1"
headerValue="Select Product"
list="Products"
/>
</h4>
<h4>
<s:submit label="Submit" name="submitButton" align="center" />
</h4>
</s:form>
以下是我的result.jsp:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org
/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Results Page</title>
</head>
<body>
<h1>Portal</h1>
<h4>
Selected Product : <s:property value="product"/>
</h4>
</body>
</html>
以下是我的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>
<constant name="struts.enable.DynamicMethodInvocation" value="false" />
<constant name="struts.devMode" value="true" />
<constant name="struts.ognl.allowStaticMethodAccess" value="false" />
<package name="default" extends="struts-default" namespace="/">
<action name="result" class="com.abc.xyz.Portal">
<result name="error">Portal.jsp</result>
<result name="success">Result.jsp</result>
</action>
</package>
</struts>
以下是我的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee
/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>Portal</display-name>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>Portal.jsp</welcome-file>
</welcome-file-list>
</web-app>
当我在Tomcat 6服务器上执行此操作时,出现以下错误:
SEVERE: Servlet.service() for servlet jsp threw exception
tag 'select', field 'list', name 'product': The requested list key 'Products' could
not be resolved as a collection/array/map/enumeration/iterator type. Example:
people or people.{name} - [unknown location]
但是当我用list =“#{'1':'Java','2':'C ++'}”替换list =“Products”时,它的工作原理非常好......我不知道是什么我错过了,因此列表没有显示。
请帮忙。
答案 0 :(得分:3)
Java区分大小写... list =“products”是您想要的 list =“Products”
修改:请参阅此问题下的评论,您应该拥有一个getter或将对Products的访问权限更改为公开。
答案 1 :(得分:3)
未为地图产品分配内存。
在设置产品写入值之前 - Products = new Map();
然后将值设置为地图。这将有助于在视图中填充产品的值。
答案 2 :(得分:1)
根据Struts2数据,预填充应该由PreparableInterceptor完成,你必须覆盖prepare方法。
public void prepare() throws Exception {
Products = new HashMap();
Products.put("1", "C#");
Products.put("2", "Java");
}
答案 3 :(得分:0)
实际上当你打开你的Portal.jsp时,它会查看valuestack,但它没有得到这就是为什么会出现这个错误。因为在加载时相应的操作没有调用,你必须调用action onload.Implement Preparable interface并覆盖准备方法,并用该方法编写代码.`
答案 4 :(得分:0)
请参阅我对这个类似问题的回答:Struts2 list couldn't be resolved
有关其他详情,请参阅: https://struts.apache.org/docs/message-resource-files.html