0

Struts 1.3.8 の実行

hdiv-config.xml

<hdiv:config excludedExtensions="css,png,js,gif,jpeg"
    protectedExtensions=".*.do" maxPagesPerSession="20" confidentiality="true" avoidCookiesIntegrity="true">        
    <hdiv:startPages>/loginForm.do</hdiv:startPages>
    <hdiv:startPages>/login.do</hdiv:startPages>
    <hdiv:startPages>/logout.do</hdiv:startPages>

    <hdiv:startPages>/home.do</hdiv:startPages>
    <hdiv:startPages>/pages/BillDischarge/NewPrepaidBill.do</hdiv:startPages>


    <hdiv:startParameters>org.apache.struts.action.TOKEN,org.apache.struts.taglib.html.TOKEN</hdiv:startParameters>
</hdiv:config>
    <hdiv:editableValidations>
    <hdiv:validationRule url=".*"/>
</hdiv:editableValidations>

`

startPages で定義されたページを除くすべてのページで、「承認されていない」エラー ページにリダイレクトされます。

ログ: 2016-10-19 14:42:10 [@] INFO Logger: HDIV_PARAMETER_DOES_NOT_EXIST;/pages/Common/PatientSearch.do;_HDIV_STATE_;;;0:0:0:0:0:0:0:1;0:0:0:0:0:0:0:1;anonymous;

ヘルプ?

4

1 に答える 1

0

リンクとフォームが Hdiv によって処理されていないようです。

タグ ライブラリの構成を確認してください。アプリケーションは、Struts のファイルではなく、Hdiv tld ファイルをロードする必要があります。

動作する web.xml ファイルについては、このサンプル アプリケーションをご覧ください: https://github.com/hdiv/hdiv-struts-examples/blob/master/src/main/webapp/WEB-INF/web.xml#L122

于 2016-12-01T17:28:00.530 に答える