【问题标题】:Struts2 freemarker not submitting form fieldsStruts2 freemarker不提交表单字段
【发布时间】:2011-12-24 13:44:14
【问题描述】:

这太基础了,我简直不敢相信我已经花了一整天的时间。

好的,这是我的 freemarker 页面

    bla bla bla
<form name="message" action="[@s.url action="login"/]" onsubmit="return detectJavaScript();" method="post">
    <fieldset>
        <legend>To begin, type your Graduation Report ID and password</legend>
        <ol>
            <li>
                [@requiredInstruction /]
                <label for="username" accesskey="U">
                    [@requiredField /] <strong>Graduation Report ID:</strong>
                </label>
                <input id="username" name="username" size="10" tabindex="1" type="text" value="${username!''}"
                    [@errorStyle show=(fieldErrors?exists && fieldErrors["username"]?exists)/] />
                [@showFieldError field="username" /]
            </li>
            <li>
                <label for="password" accesskey="P">
                    [@requiredField /] <strong>Password:</strong>
                </label>
                <input id="password" name="password" size="10" tabindex="2" type="password" value="${password!''}" 
                    [@errorStyle show=(fieldErrors?exists && fieldErrors["password"]?exists)/] />
                [@showFieldError field="password" /]
            </li>
bla bla bla

还有我的动作课

public class SubmitLoginAction {
    public String username;
    public String password;


    private static Logger logger = Logger.getLogger(SubmitLoginAction.class);

    public void validate() {
        logger.debug("validate fired");

        logger.debug("username returned: " + username);
        logger.debug("password returned: " + password);

还有我的 struts 文件

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <!-- <include file="com/paritysys/util/struts.xml" /> -->

    <constant name="struts.url.includeParams" value="none" />
    <constant name="struts.action.extension" value="html,action" />

    <package name="public" extends="struts-default">
        <interceptors>
            <interceptor name="websiteOnline"
                class="parity.action.website.OnlineInterceptor" />
            <interceptor name="websiteLogin"
                class="parity.action.website.LoginInterceptor" />

            <interceptor-stack name="appStack">
                <interceptor-ref name="validation">
                    <param name="excludeMethods">input,back,cancel,browse</param>
                </interceptor-ref>
                <interceptor-ref name="workflow"/>
                <interceptor-ref name="modelDriven"/>
                <!-- <interceptor-ref name="paritySessionStack"/> -->
                <interceptor-ref name="websiteOnline" />
                <interceptor-ref name="websiteLogin" />
            </interceptor-stack>
        </interceptors>

        <default-interceptor-ref name="appStack" />

        <global-results>
            <result name="login" type="redirectAction">
                <param name="actionName">index</param>
            </result>
            <result name="exception" type="freemarker">/public/error.html.ftl</result>
            <result name="error" type="freemarker">/public/error.html.ftl</result>
            <result type="freemarker" name="maintenance">/public/maintenance.html
            </result>
            <result type="freemarker" name="pre-offline">/public/pre-offline.html
            </result>
            <result type="freemarker" name="post-offline">/public/post-offline.html
            </result>
        </global-results>

        <action name="index" class="parity.action.website.LoginAction">
            <result type="freemarker" name="success">/public/index.html.ftl</result>
        </action>

        <action name="login" class="parity.action.website.SubmitLoginAction">
            <result type="freemarker" name="success">/public/questionnaire.html.ftl
            </result>
            <result type="freemarker" name="input">/public/index.html.ftl</result>
        </action>

        <action name="submit" class="parity.action.website.SubmitQuestionnaireAction">
            <result type="freemarker" name="success">/public/thanks.html.ftl
            </result>
            <result type="freemarker" name="input">/public/questionnaire.html.ftl
            </result>
        </action>

        <action name="whereIsMyId" class="parity.action.website.LoginAction">
            <result type="freemarker" name="success">/public/whereIsMyId.html.ftl
            </result>
        </action>

        <action name="loadCollegeFinder" class="parity.action.website.LoadCollegeFinderAction">
            <result type="freemarker" name="success">/public/college_finder.html.ftl
            </result>
        </action>

        <action name="findCollege" class="parity.action.website.FindCollegeAction">
            <result type="freemarker" name="success">/public/college_finder.html.ftl
            </result>
            <result type="freemarker" name="input">/public/college_finder.html.ftl
            </result>
        </action>
    </package>
</struts>

无论我做什么,它都会为用户返回 null 并通过。我尝试使用 getter 和 setter,没有,似乎没有任何效果。

我认为这是一个带有 struts 的开箱即用的东西。

【问题讨论】:

    标签: struts2 freemarker


    【解决方案1】:

    是的,但你已经把它从盒子里拿出来并把它的位子洗了一遍。

    您已从默认拦截器堆栈中删除了“params”拦截器。 “params”拦截器用于设置动作的参数。我在my answer to your previous post中提到过。

    (同时无需继续输入“freemarker”。)

    (顺便说一句,我真的不推荐公共属性,尽管它会起作用,这取决于您的 Struts 版本——IIRC OGNL 版本的一个凹凸改变了这一点。)

    【讨论】:

    • 是的,我重读了那篇文章并意识到我做了什么。我重组了拦截器并为其添加了strutsdefault。这带来了我什至不知道的作品没有工作(或存在)回到网上。实际上很有趣。这是对现有项目的修改,因此我必须遵循与以前的供应商相同的设计风格。等不及我可以摆脱这个东西并大修后端。
    • @scphantm 是的,很多(大部分)功能都包含在拦截器中——我很早就学会了先检查它们,以确保我正在做我认为的事情:/
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2014-07-24
    • 2014-12-20
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多