1

我想在使用 struts1 配置文件调用它时传递一个值。我创建了一个具有以下属性的表单 bean

public class MyForm extends ActionForm {
    private String task;  

    public String getTask() {
        return task;
    }
    public void setTask(String task) {
        this.task = task;
    }
}

在 struts-config.xml 中,我定义了 form bean 和 action,如下所示。

<form-bean name="myForm" type="demo.MyForm"></form-bean>
<action path="/myAction" name="myForm" type="demo.MyAction" scope="request">
    <set-property value="view" property="task" />
    <forward name="success" path="/result.jsp"></forward>
</action>

我正在尝试使用这些配置在 web sphere 6.1 中运行它,它给出了以下异常

Deregister the mbean because of uncaught init() exception thrown by servlet action: javax.servlet.UnavailableException: Parsing error processing resource path file:/D:/workspaces/j-space/myProject/Web Content/WEB-INF/struts-config.xml
at org.apache.struts.action.ActionServlet.handleConfigException(ActionServlet.java:761)
at org.apache.struts.action.ActionServlet.parseModuleConfigFile(ActionServlet.java:744)
at org.apache.struts.action.ActionServlet.initModuleConfig(ActionServlet.java:689)
at org.apache.struts.action.ActionServlet.init(ActionServlet.java:356)
at javax.servlet.GenericServlet.init(GenericServlet.java:256)
....

我想我遗漏了一些东西或以错误的方式使用了 set-property 标签。任何人都可以帮忙吗?

4

2 回答 2

1

Struts 1.3 DTD

当自定义子类与 、 、 或 元素一起使用时,“set-property”元素特别有用。

使用您想要包含的属性创建 ActionMapping 的子类

public class CustomActionMapping extends ActionMapping {

    private String task;

    public String getTask() {
        return task;
    }

    public void setTask(String task) {
        this.task = task;
    }
}

配置自定义动作映射struts-config.xml

<action-mappings type="CustomActionMapping">
   <action path="/myAction" name="myForm" type="demo.MyAction" scope="request">
      <set-property value="view" property="task" />
      <forward name="success" path="/result.jsp"></forward>
   </action>
</action-mappings>

在你的类的doGet/doPost方法中获取任务的值Action

CustomActionMapping cam = (CustomActionMapping) mapping;
String task = cam.getTask();

希望这可以帮助你。

于 2012-11-06T10:22:38.963 回答
-1

您的 struts-config.xml 是否遵循架构?请参阅http://struts.apache.org/1.3.10/index.html上的示例

于 2012-11-06T10:23:49.763 回答