上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: package com.jvm.dispatch; /** * @author JTY * @date 21-2-20 23:44 * @description * 静态分派 编译期间根据静态类型(外观类型)确定目标方法,典型的有方法重载 * 方法动态分派 运行期间根据运行时类型(实际类型)确定目标 阅读全文
posted @ 2021-02-21 01:43 复一日 阅读(66) 评论(0) 推荐(0) 编辑
摘要: package com.jvm.init; /** * @author JTY * @date 21-2-21 0:37 * @description 类的初始化过程 * 1. 父类 默认初始值 0 或null (jvm 中类构造器<clinit>()方法) * 2. 子类默认初始值 0 或null 阅读全文
posted @ 2021-02-21 01:28 复一日 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 网络基础 https://www.runoob.com/w3cnote/summary-of-network.html ABCDE网络ip分类: https://blog.csdn.net/weixin_29479087/article/details/113016413 A类地址以0开头,第一个字 阅读全文
posted @ 2021-02-10 10:37 复一日 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 下载地址 https://meld.en.softonic.com/ 截图 阅读全文
posted @ 2021-02-03 10:50 复一日 阅读(159) 评论(0) 推荐(0) 编辑
摘要: http://www.ruanyifeng.com/blog/2017/07/iaas-paas-saas.html 阅读全文
posted @ 2021-01-29 17:20 复一日 阅读(35) 评论(0) 推荐(0) 编辑
摘要: mvn dependency:copy-dependencies -DoutputDirectory=lib 阅读全文
posted @ 2021-01-19 13:26 复一日 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 服务器启动 AbstractSecurityWebApplicationInitializer implements WebApplicationInitializer (简单的说SpringServletContainerInitializer会扫描WebApplicationInitialize 阅读全文
posted @ 2020-12-28 16:17 复一日 阅读(310) 评论(0) 推荐(0) 编辑
摘要: security 授权重定向请求中没有包含需要的参数 OAuth2ParameterNames.CODE OAuth2ParameterNames.STATE 阅读全文
posted @ 2020-12-27 22:05 复一日 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Provider spring-security-config模块下 org.springframework.security.config.oauth2.client.CommonOAuth2Provider.class 包括google、github等 public enum CommonOAu 阅读全文
posted @ 2020-12-27 14:26 复一日 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 客户端授权模式配置 authorizationGrantType: password 默认的授权请求解析不支持password模式,只支持AUTHORIZATION_CODE和IMPLICIT; 源码如下 DefaultOAuth2AuthorizationRequestResolver priva 阅读全文
posted @ 2020-12-27 14:09 复一日 阅读(554) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页