我的github
上一页 1 ··· 154 155 156 157 158
摘要: 我们都习惯了通过RequestMapping注解来处理url映射,但是我们不应该忘记还可以使用原始的非注解的方式来配置url。。 参考:https://blog.csdn.net/zsbgood/article/details/79504717 在geoserver中,可以看到没有使用注解。。而是使 阅读全文
posted @ 2022-01-21 10:47 XiaoNiuFeiTian 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 在geoserver中并没有使用RequestMapping来处理url。。而是使用SimpleUrlHandlerMapping...... springMvc四种处理器映射器之二:SimpleUrlHandlerMapping:https://blog.csdn.net/qq_32649889/ 阅读全文
posted @ 2022-01-20 18:05 XiaoNiuFeiTian 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 核心拦截器DispatchFilter实现:https://blog.csdn.net/Evan_Leung/article/details/53237115 要实现的目标:如何根据用户请求找到对应的处理类和处理方法 FilterDispatcher原理以及使用:https://www.iteye. 阅读全文
posted @ 2022-01-20 17:39 XiaoNiuFeiTian 阅读(46) 评论(0) 推荐(0) 编辑
摘要: HttpServletRequestWrapper类的使用:https://www.cnblogs.com/xuhewei/p/11474389.html 使用HttpServletRequestWrapper重写Request请求参数:https://www.cnblogs.com/cach/p/ 阅读全文
posted @ 2022-01-20 16:29 XiaoNiuFeiTian 阅读(44) 评论(0) 推荐(0) 编辑
摘要: lnterceptor主要作用:拦截用户请求,进行处理,比如判断用户登录情况、权限验证,只要针对Controller请求进行处理,是通过Handlerlnterceptor。 Filter主要作用:过滤字符编码、做一些业务逻辑判断,主要用于对用户请求进行预处理,同时也可进行逻辑判断。 springm 阅读全文
posted @ 2022-01-20 15:44 XiaoNiuFeiTian 阅读(60) 评论(0) 推荐(0) 编辑
上一页 1 ··· 154 155 156 157 158