spring
文章平均质量分 85
whaifree
这个作者很懒,什么都没留下…
展开
-
ssm+boot+thymeleaf博客系统完成总结
目录1. 基本介绍1.1技术栈2. 后台实现及问题2.1 MybatisPlus代码生成2.2 Controller调用MybatisPlus的ServiceMybatisPlus的配置分页插件paginationInterceptorpagexxxWrapper 的使用问题2.3 Swagger使用问题2.4 SpringSecurity的使用管理员用户修改密码的实现问题2.5 监听器实现启动时自动加载问题2.6 Web配置问题总结1. 基本介绍1.1技术栈后台:SpringBootSpri原创 2020-08-29 15:26:53 · 487 阅读 · 0 评论 -
SpringSecurity入门学习
202008SpringSecurity安全首要考虑Spring Security is a framework that provides authentication, authorization, and protection against common attacks. With first class support for both imperative and reactive applications, it is the de-facto standard for securing原创 2020-08-04 19:45:39 · 185 阅读 · 0 评论 -
@ControllerAdvice @valid实现拦截错误信息响应json给前端 参数效验
@ControllerAdvice实现拦截错误信息响应json给前端 参数效验使用的jar <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> ...原创 2020-04-24 15:09:15 · 1734 阅读 · 1 评论 -
spring中aop(切面编程)的部分名词理解
aop面向切面编程解决一些系统层面上的问题,比如日志,事务,权限等待不改变原有的逻辑的基础上,增加一些额外的功能影响了多个类的公共行为封装到一个可重用模块,并将其命名为"Aspect",即切面。与业务无关,共用业务模块却要共同调用的逻辑核心关注点和横向关注点核心关注点:业务处理的主要流程横向关注点:与核心内容关系不大的点,如权限认证、日志、事物。aop的相关概念横向关注...原创 2020-03-01 09:45:22 · 183 阅读 · 0 评论