我希望我的一些页面可以安全地打开。大多数这些页面都以名称“my_Account_”开头
例如,其中一个页面是“my_account_add_credit_card.xhtml”
为了做到这一点,我将以下代码放入 web.xml
<security-constraint>
<web-resource-collection>
<web-resource-name>my account</web-resource-name>
<description>my account</description>
<url-pattern>/my_account_*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<description/>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
但它没有用。我还更改了如下 URL 模式
<url-pattern>/*</url-pattern>
然后它起作用了,但问题是这将打开 HTTPS 中的每个页面,我不希望它打开 HTTPS 中的所有页面。我只需要打开以“my_account_”开头的页面
我用玻璃鱼