想要创建一个过滤器以检查Cookie,然后保存控制器中的对象和引用
我想创建一个过滤器,该过滤器将在我的任何Spring MVC控制器动作之前执行。
我想检查cookie的存在,然后仅将对象存储在 请求的某个位置。
然后,我需要从控制器操作中引用该对象(如果存在)。
有关如何执行此操作的建议?
回答:
要创建过滤器,只需创建一个实现javax.servlet.Filter的类,就您而言,可能是这样
public class CookieFilter implements Filter { public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
HttpServletRequest request = (HttpServletRequest) req;
Cookie[] cookies = request.getCookies();
if (cookies != null){
for (Cookie ck : cookies) {
if ("nameOfMyCookie".equals(ck.getName())) {
// read the cookie etc, etc
// ....
// set an object in the current request
request.setAttribute("myCoolObject", myObject)
}
}
chain.doFilter(request, res);
}
public void init(FilterConfig config) throws ServletException {
// some initialization code called when the filter is loaded
}
public void destroy() {
// executed when the filter is unloaded
}
}
然后在您的web.xml中声明过滤器
<filter> <filter-name>CookieFilter</filter-name>
<filter-class>
my.package.CookieFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>CookieFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
此时,在您的控制器中,只需使用request.getAttribute(“ myCoolObject”)检查该请求中是否存在该外观即可
以上是 想要创建一个过滤器以检查Cookie,然后保存控制器中的对象和引用 的全部内容, 来源链接: utcz.com/qa/402645.html