gpt4 book ai didi

java - 如何使用struts1.2限制浏览器中任何链接的url直接访问

转载 作者:行者123 更新时间:2023-12-01 04:15:30 25 4
gpt4 key购买 nike

嗨, friend 们,在这种情况下,出于安全目的,我必须限制来自 url 的链接的直接访问,我需要相同的代码来完成此过程,任何人都可以帮助我。在此过程中将涉及两个用户(管理员和用户)。

我刚刚尝试过这个。但不工作

<security-role><role-name>admin</role-name></security-role>
<security-role><role-name>user</role-name></security-role>

<security-constraint>
<web-resource-collection>
<web-resource-name>Admin</web-resource-name>
<url-pattern>/jsp/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>User</web-resource-name>
<url-pattern>/jsp/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>user</role-name>
</auth-constraint>
</security-constraint>

最佳答案

我想请求处理器可能会帮助你。 Action servlet 在每次请求时都会调用它。覆盖这个并拥有自己的 URL 验证可能会有所帮助。

http://struts.apache.org/release/1.2.x/userGuide/building_controller.html#request_processor http://wiki.apache.org/struts/RequestProcessor

看看这是否符合您的要求。

关于java - 如何使用struts1.2限制浏览器中任何链接的url直接访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19488267/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com