共享tomcat中的身份验证?
我正在使用 godaddy 使用共享 tomcat 包进行 java 托管。 现在,正如它所分享的那样,我不能和贾斯一起去。 那么其他jsp网站如果不能实现jaas,如何对自己网站的用户进行身份验证和授权呢?他们自己处理所有机制还是他们有其他更好的机制?
提前致谢。
I am using godaddy for my java hosting using shared tomcat package.
Now as it it shared i cant go with jaas.
So how do other jsp websites authenticate and authorize users for their site if they can not implement jaas? Do they handle all the mechanism themselves or is their some other better mechanism?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要处理应用程序中的安全性。 Spring Security 和 Apache Shiro 是合理的选择;两者都可以简单地作为过滤器安装在 web.xml 中,并且还具有 AOP 支持。尤其是 Spring Security 已经达到了一定的成熟度,许多人使用它作为容器安全性的替代方案,即使不存在像您遇到的那样的障碍。
You will need to handle security within your application. Spring Security and Apache Shiro are the logical choices; both can be simply mounted as filters in your web.xml and also have AOP support. Spring Security in particular has reached a level of maturity where many people use it as an alternative to container security, even when there are no impediments like the one you have encountered.