Web ページがあり、いくつかのテキスト ボックスと送信ボタンがあります。送信時に、ターゲット URL は SSL の url-pattern と一致します。ターゲット ページは HTTPS として開かれますが、テキスト ボックスの値は失われます。
request.getParameter("txtUser") is null
前のjspから送信/リクエストパラメータにアクセス/取得する方法はありますか?
web.xml
<security-constraint>
<display-name>Security Constraint</display-name>
<web-resource-collection>
<web-resource-name>Protected Area</web-resource-name>
<url-pattern>/content/account/passrecover/*</url-pattern>
</web-resource-collection>
<role-name>custom-report-user</role-name>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>