摘要:
判断ISFULL(exp1,exp2) //exp1不为null,则返回exp1,否则返回exp2where name IS nullwhere name IS NOT nullwhere binary name = ‘aaa’ //区别大小写=,!=,<>,>,>=查询处理逻辑查询执行顺序每一步生 阅读全文
摘要:
![](https://img2024.cnblogs.com/blog/2529613/202401/2529613-20240115155605983-854542227.png) 阅读全文
摘要:
![](https://img2024.cnblogs.com/blog/2529613/202401/2529613-20240115155409945-353762314.png) 阅读全文
摘要:
![](https://img2024.cnblogs.com/blog/2529613/202401/2529613-20240115160230831-993280655.png) 阅读全文
摘要:
配置类 创建securityConfig,并继承WebSecurityConfigurerAdapter,它是web应用的安全适配器 重写configure方法,共有三个,重写参数为http的configure方法 configure(HttpSecurity http)方法,配置表单登陆认证方法, 阅读全文
摘要:
定义:又叫门面模式,提供了一个统一的接口或外观类,用来访问子系统中的一群接口 特点:外观模式定义了一个高层接口,让子系统更容易使用 类型:结构型 适用场景: 子系统越来越复杂,增加外观模式提供简单调用接口 构建多层系统结构,利用外观对象作为每层的入口,简化层间调用 优点: 简化了调用过程,无需深入了 阅读全文