如何保护使用 Springs REST Api 创建的 RESTful Web 服务?

发布于 2024-11-08 03:37:16 字数 190 浏览 0 评论 0原文

我们有一个使用 Spring MVC 3.0 创建的 Spring Web 应用程序。在同一个应用程序中,我们使用 Springs 的 REST API 创建了 RESTful Web 服务。

现在我们需要保护这些网络服务。春天我们该怎么做呢?我们可以为此使用 Spring Security 吗?如果不是,还有什么其他选择?

谢谢。

We have a Spring web application created using Spring MVC 3.0 In the same application, we have created RESTful web services using Springs's REST API.

Now we need to secure those web services. How do we do this in spring? Can we use spring security for this? If not what are the other options?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟火散人牵绊 2024-11-15 03:37:16

这实际上取决于您想要实施的安全级别。您可以仅使用基于 web.xml 的简单访问控制以及领域、用户名和密码。

Web 服务的安全性是另一回事。来自 Spring Security 常见问题解答

Web 应用程序很容易受到各种攻击,您应该熟悉这些攻击,最好是在开始开发之前,这样您就可以从一开始就考虑到它们进行设计和编码。请访问 OWASP 网站,了解有关 Web 应用程序开发人员面临的主要问题以及可以采取的对策的信息他们。

Spring Security 当然是一个选择。在大多数情况下,它很容易(现在)与 Spring 集成,并且具有灵活的身份验证模块。

您还应该考虑 Apache Shiro。与 Spring Security 的比较问题已经得到解答 - Shiro 与 SpringSecurity 和 Shiro 也 与 Spring 很好地集成

关于此主题还已经回答了一些其他问题 - 如何保护使用spring3服务REST?寻找一个简单的Spring安全示例< /a>

我认为这个问题目前的形式没有明确的答案,但我希望这仍然有帮助。

It really depends on the level of security you want to impose. You could just use simple web.xml based access control with realms, usernames and passwords.

Security of your webservices is another matter. From the Spring Security FAQ:

Web applications are vulnerable to all kinds of attacks which you should be familiar with, preferably before you start development so you can design and code with them in mind from the beginning. Check out the OWASP web site for information on the major issues facing web application developers and the countermeasures you can use against them.

Spring Security is certainly an option. It is for the most part, easy (nowadays) to integrate with Spring and has a flexible authentication module.

You should also consider Apache Shiro. A comparison to Spring Security question has already been answered - Shiro vs. SpringSecurity and Shiro also integrates nicely with Spring.

There are also some other questions already answered on this topic - How to secure a service REST with spring3? and Looking for a Simple Spring security example

I do not think there is a definitive answer to the question in it's current form, but I hope this helps all the same.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文