登录拦截器实现|学习笔记

简介: 快速学习登录拦截器实现

开发者学堂课程【SpringMVC框架入门:登录拦截器实现】学习笔记,与课程紧密联系,让用户快速学习知识。

课程地址:https://developer.aliyun.com/learning/course/22


登录拦截器实现

目录

一.如果被拦截-能否到达指定的页面?

二.拦截器应用--登录拦截器

三.拦截器的配置

1.如果被拦截-能否到达指定的页面?
使用HttpServletResposne或者HttpServletRequest可以实现转发或重定向

//在请求处理的方法之前执行
//如果返回true 那么执行下一个拦截器,如果返回false那么不执行下一个拦截器
@Override
public boolean preHandle(HttpServletReguest request ,
HttpServletigresponse response,object handler)
throws Exception {
System.out,println-(--------处理前
");
response.sendRedirect(reguest.getContextPath()+"/index.isp");
return false;

}

2.拦截器应用--登录拦截器

public class LoginInterceptor implements HandlerInterceptorf

//允许哪些url不被拦截,哪些需要被拦截
private List<String> allowedPass;
@Override
public boolean preHandle(HttpServletRequest request,
HttpServletResponse response, Object handler) throws
Exception{
String url=request.getRequestJRL().toString();
//先判断session中是否有
Object user =
request. getSession().getAttribute("user");
if(user!=null)
return true ;
for(String temp:?llowedPass){
if(url.endsWith(temp))({
return true;
}

Response.sendRedirect(request.getContextPath()+'/login.jsp");

return false;

@Override
publie void postHandle(Http5ervletReauest request,
HttpServlet Respense response,Object handler,

ModelAndVicw modclAndVicw) throws Exception{

}
@Override
public vold afterConpletion(HttpServletRequest request,
HttpSeruletResponse response, 0bject handler,
Exception ex)

throw Exception {

}
publie void setAllouedPass(list<string> allowedPass) {

This.allowedPass = allowedPass;

}

3.拦截器的配置

<!拦截器的配置--》

<mvc interreptors>

<mvc interscepter>
<!--包括路径及其子路径- 拦截所有controller

如果是/admin/*拦截的是/admin/add,/admin/list
etc./admin/user/add不被拦截
如果是/alnin/**-拦截:
/admin/add,/admin/list,/admin/user/add
<mvc:mapping path="/product/*"/》
<mvc:mapping path="/cart/*"/>-->
<mvc:mapping path="/*"/>
<l--对应的拦截器-->
<bean class="cn.sxt.interceptor.LoginInterceptor">

<property name "allowedpass">
<list>
<value>1ogin,do.</value>
</list>

</property>

相关文章
|
6天前
|
数据采集 人工智能 安全
|
15天前
|
云安全 监控 安全
|
2天前
|
存储 SQL 大数据
删库跑路?别慌!Time Travel 带你穿回昨天的数据世界
删库跑路?别慌!Time Travel 带你穿回昨天的数据世界
242 156
|
9天前
|
SQL 自然语言处理 调度
Agent Skills 的一次工程实践
**本文采用 Agent Skills 实现整体智能体**,开发框架采用 AgentScope,模型使用 **qwen3-max**。Agent Skills 是 Anthropic 新推出的一种有别于mcp server的一种开发方式,用于为 AI **引入可共享的专业技能**。经验封装到**可发现、可复用的能力单元**中,每个技能以文件夹形式存在,包含特定任务的指导性说明(SKILL.md 文件)、脚本代码和资源等 。大模型可以根据需要动态加载这些技能,从而扩展自身的功能。目前不少国内外的一些框架也开始支持此种的开发方式,详细介绍如下。
635 5
|
12天前
|
人工智能 自然语言处理 API
一句话生成拓扑图!AI+Draw.io 封神开源组合,工具让你的效率爆炸
一句话生成拓扑图!next-ai-draw-io 结合 AI 与 Draw.io,通过自然语言秒出架构图,支持私有部署、免费大模型接口,彻底解放生产力,绘图效率直接爆炸。
789 152
|
20天前
|
机器学习/深度学习 人工智能 自然语言处理
Z-Image:冲击体验上限的下一代图像生成模型
通义实验室推出全新文生图模型Z-Image,以6B参数实现“快、稳、轻、准”突破。Turbo版本仅需8步亚秒级生成,支持16GB显存设备,中英双语理解与文字渲染尤为出色,真实感和美学表现媲美国际顶尖模型,被誉为“最值得关注的开源生图模型之一”。
1899 9
|
3天前
|
机器学习/深度学习 人工智能 监控
别把模型当宠物养:从 CI/CD 到 MLOps 的工程化“成人礼”
别把模型当宠物养:从 CI/CD 到 MLOps 的工程化“成人礼”
223 163