运行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下定义的页面之外的每个页面都会将我重定向到“未经授权的”#39;错误页面。
日志:
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;
帮助?
答案 0 :(得分:0)
似乎您的链接和表单未由Hdiv处理。
检查标签库的配置。应用程序必须加载Hdiv tld文件而不是Struts文件。
查看此示例应用程序以获取有效的web.xml文件: https://github.com/hdiv/hdiv-struts-examples/blob/master/src/main/webapp/WEB-INF/web.xml#L122