Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Java jersey Restful webservice。 如何向此球衣网络服务添加身份验证机制,一旦通过身份验证,我需要保留会话?
您需要向执行身份验证的 Jersey 服务器添加一个过滤器。Jersey 提供了一个使用基本身份验证的方法HttpBasicAuthFilter,并且在网上还有许多其他使用不同身份验证方案的示例。
HttpBasicAuthFilter
您不应将会话与 REST 一起使用,因为它会随着时间的推移在多个请求之间创建链接;每个 REST 请求都应该是独立的,并且不依赖于之前发生的任何事情。每个 REST 请求都应该有自己的身份验证参数。