springboot 认证和授权

shiro 源码学习记录

Spring @RequestAttribute

https://www.cnblogs.com/lvbinbin2yujie/p/10611377.html

@RequestAttribute,@SessionAttribute,@ModelAttribute

https://www.jianshu.com/p/1672c8b406bf

定义注解

注解的注解,也称元注解
https://www.cnblogs.com/liaojie970/p/7879917.html

swagger

https://blog.csdn.net/lbw520/article/details/96444287 自动和手动介绍
https://www.cnblogs.com/lvbinbin2yujie/p/10611377.html 自动的使用

任务调度框架quartz

https://blog.csdn.net/weixin_38316697/article/details/84070951

如何使用特定的SSH Key提交GIT

https://www.jianshu.com/p/82aa1678411e

Spring,Spring MVC及Spring Boot区别

https://www.jianshu.com/p/42620a0a2c33

Vue-router 中hash模式和history模式的区别

https://zhuanlan.zhihu.com/p/337073166
https://segmentfault.com/a/1190000013006640

理解OAuth 2.0

https://www.ruanyifeng.com/blog/2014/05/oauth_2_0.html

Shiro安全框架

https://zhuanlan.zhihu.com/p/54176956

Maven 构建生命周期

https://www.runoob.com/maven/maven-build-life-cycle.html

Slf4j和Log4j2

https://www.slf4j.org/codes.html#multiple_bindings
https://segmentfault.com/a/1190000037598528

maven 依赖树

https://www.jianshu.com/p/c8419c40596b

springboot在不同环境(开发,测试,生产)使用不同的配置文件

https://blog.csdn.net/lianzhang861/article/details/107715424

application.properties和application.yml文件的区别

1.内容格式比较:
.properties文件,通过.来连接,通过=来赋值,结构上,没有分层的感觉,但比较直接。
.yml文件,通过:来分层,结构上,有比较明显的层次感,最后key赋值的:后需要留一个空格
2.执行顺序
如果工程中同时存在application.properties文件和 application.yml文件,yml文件会先加载,而后加载的properties文件会覆盖yml文件。所以建议工程中,只使用其中一种类型的文件即可

es索引不能出现大写字母

@tableid注解

MyBatis-Plus的注解,用来标注主键
@tableid(value="数据库中的主键名称",type="设置主键类型:主键的生成策略")
file