12 2020 档案
摘要:ccna ccnp ccie 区别
阅读全文
摘要:一、现象 在 IDEA 中引入新的项目时,成功启动项目后访问 webApp 目录下的页面文件,提示404,可在 eclipse 中却可以正常使用。 二、解决方式: 1)点击右上角,【Edit Configurations】 2)选择要使用的项目,将 Working dIrectory 设置成 $MO
阅读全文
摘要:<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration> <configuration scan="true" scanPeriod="10000000 seconds" debug="false"> <!-- 定义日志的根目录
阅读全文
摘要:Eclipse安装lombok插件 作者:懵懂无知的蜗牛 来源:CSDN 原文:https://blog.csdn.net/qq_25646191/article/details/79639633 版权声明:本文为博主原创文章,转载请附上博文链接! 常用注解: @TableName("swr_lix
阅读全文
摘要:感谢黑马程序员!http://www.itheima.com/ Oauth2.0 提供的认证授权模式: 1. 授权码模式 2. 密码模式 3. 客户端模式 4. 简化模式 资源地址和权限,什么时候初始化到 spring 容器中的?借助:DefaultSingletonBeanRegistry 初始化
阅读全文
摘要:SpringSecurity 本质是一个过滤器链: 从启动是可以获取到过滤器链: org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter org.springframework.s
阅读全文
摘要:相关表: JdbcTokenRepositoryImpl 查看 cookie:
阅读全文
摘要:Web 应用的安全性包括用户认证(Authentication)和用户授权(Authorization)两个部分,这两点也是 Spring Security 重要核心功能。 用户认证(Authentication) (1)用户认证指的是:验证某个用户是否为系统中的合法主体,也就是说用户能否访问 该系
阅读全文
摘要:maven 2004年 apache gradle 2012年 apache,基于Apache Ant和Apache Maven概念的项目自动化构建开源工具 gradle 下载 感谢网友:刘业芳https://www.jianshu.com/p/d9329117aa2f https://servic
阅读全文
摘要:根据 2020年12月16日下午16:00的会议共识:1. 项目使用 properties 文件作为配置文件。2. 使用 dataid, ${spring.application.name}-${spring.profiles.active}.${file-extension:properties}
阅读全文
摘要:Druid 连接池报错:abandon connection 在 application.properties 配置: spring.datasource.druid.remove-abandoned-timeout-millis=99999999999
阅读全文
摘要:1. dev sit master 全部一套环境的场景 2. 由于特殊原因,其中一个环境需要同时存在 2 套环境。比如说有两个周期都比较长的并发需求,这时需要有两套 dev 环境支持在线测试 3. Swiss-re 在 China & Australia 的业务的 dev 环境都需要两套环境的情况下
阅读全文
摘要:nacos config 版本一 版本二 场景 https://www.cnblogs.com/xiluhua/p/14141501.html
阅读全文
摘要:Settings→Editor→General→Console
阅读全文
摘要:druid 日志优化 https://www.cnblogs.com/gyjx2016/p/13672374.html
阅读全文
摘要:springboot 打印 requestMappings <logger name="org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping" level="trace" /> <logg
阅读全文
摘要:1. 格式化 xml Ctrl+Alt+L 2. idea 重命名修改为 F2 File --> Setting --> Keymap --> keymap --> 你的快捷键模板 --> Main menu --> Refactor --> Rename 1.选中, 右键 Add Keyboard
阅读全文
摘要:IaaS、SaaS 和 PaaS 的区别 https://www.zhihu.com/question/20387284
阅读全文
摘要:controller 什么时候注入 mappingRegistry 的? 1. spring 版本:5.2.2 2. 图一 3. 图二
阅读全文
摘要:换电脑搭环境 1. 装 jdk 并且配环境 2. 装 maven - 配远程中央仓库 settings.xml <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/conten
阅读全文
摘要:springcloud 技术选型 https://start.spring.io/actuator/info
阅读全文
摘要:lix large information exchange Azure AD Azure Active Directory Acronym, Abbreviation Description LHDS Life & Health Decision Service ECS Elastic Compu
阅读全文
摘要:docker-desktop: error during connect C:\Program Files\Docker\Docker\Resources\bin\docker.exe: error during connect: Post http://%2F%2F.%2Fpipe%2Fdocke
阅读全文
摘要:启动 docker desktop 但是小鲸鱼图标红色,显示启动失败。 下载:wsl_update_x64.msi 双击安装,重启点击上图 Restart 按钮即可。
阅读全文
摘要:执行 webpack-dev-server,已经配置 'style-loader' 但还是报错: 试着修改 webpack.config.js 从 use: [ 'style-loader', 'css-loader' ] 改成 {test: /\.css$/, loader: "style-loa
阅读全文
摘要:转自:https://www.jianshu.com/p/e63221200534
阅读全文
摘要:H5本地存储技术 1、sessionStorage(会话存储) -生命周期:浏览器打开到关闭的过程 -大小: 5M -保存的位置:浏览器端 -setItem(‘key’,value) -getItem(‘key’) -removeItem(‘key’) 2、localStorage(永久存储) -生
阅读全文
摘要:1. 命令式 * 注重执行的过程 * 像考试中的解答题 2. 声明式 * 注重执行的结果 * 对命令进行局部包装 * 像选择题或填空题
阅读全文