03 2020 档案

springsecurity oauth2认证服务器 自定义登陆页面导致客户端授权异常处理
摘要:如果认证服务器使用自定义登陆页面,且静态资源通过如下配置,将导致授权码模式客户端跳转认证服务器登陆成功后无法完成客户端授权,页面将跳... 阅读全文

posted @ 2020-03-31 15:49 路过君 阅读(863) 评论(0) 推荐(0) 编辑

nginx 配置笔记
摘要:nginx.conf 处理器数量 worker_processes 1; http 客户端请求正文大小 client_max_bod... 阅读全文

posted @ 2020-03-31 13:42 路过君 阅读(79) 评论(0) 推荐(0) 编辑

springboot 使用webjars打包静态资源模块
摘要:依赖 org.webjars webjars-locator 0.39 maven build 配置 ... 阅读全文

posted @ 2020-03-31 10:57 路过君 阅读(81) 评论(0) 推荐(0) 编辑

springsecurity oauth2sso 客户端单点登陆
摘要:依赖 org.springframework.cloud spring-cloud-starter-oauth2 ... 阅读全文

posted @ 2020-03-30 16:14 路过君 阅读(142) 评论(0) 推荐(0) 编辑

maven deploy异常
摘要:Deployment failed: repository element was not specified in the POM... 阅读全文

posted @ 2020-03-30 09:11 路过君 阅读(308) 评论(0) 推荐(0) 编辑

npm install异常error code EPERM
摘要:Error: EPERM: operation not permitted, unlink 控制台需要使用管理员身份启动 ... 阅读全文

posted @ 2020-03-27 10:41 路过君 阅读(434) 评论(0) 推荐(0) 编辑

springsecurity 多httpsecurity配置
摘要:多配置时根据配置文件order依次套用httpsecurity规则,等效于http.and() http.authorizeRequ... 阅读全文

posted @ 2020-03-27 07:52 路过君 阅读(360) 评论(0) 推荐(0) 编辑

spring security authenticated与fullyAuthenticated的区别
摘要:authenticated Returns true if the user is not anonymous fullyAuthe... 阅读全文

posted @ 2020-03-26 13:35 路过君 阅读(1035) 评论(0) 推荐(0) 编辑

springsecurity oauth2 端点安全源码
摘要:默认配置 AuthorizationServerSecurityConfigurer ...// 客户端默认使用BASIC AUTH... 阅读全文

posted @ 2020-03-26 13:13 路过君 阅读(199) 评论(0) 推荐(0) 编辑

springsecurity oauth2 授权码模式流程
摘要:authorization_code 1.客户端站点尝试获取授权码 http://authServer/oauth/authoriz... 阅读全文

posted @ 2020-03-26 11:32 路过君 阅读(496) 评论(0) 推荐(0) 编辑

extjs 部署时动态切换上下文路径
摘要:修改index.html ... // 获取首页上下文路径 var basePath = window.location... 阅读全文

posted @ 2020-03-25 15:52 路过君 阅读(61) 评论(0) 推荐(0) 编辑

extjs store 设置额外参数刷新数据
摘要:store.proxy.setExtraParams({param1: 'value1', param2: 'value2'});s... 阅读全文

posted @ 2020-03-25 14:26 路过君 阅读(146) 评论(0) 推荐(0) 编辑

extjs store定义 通过ajax访问json数据
摘要:{ proxy: { type: 'ajax', url: '/data.json', reader: { type: '... 阅读全文

posted @ 2020-03-25 13:51 路过君 阅读(114) 评论(0) 推荐(0) 编辑

Extjs mvvm store绑定
摘要:view ...viewModel: { type: 'view1.mainviewmodel'},...bind:{ store:... 阅读全文

posted @ 2020-03-25 13:47 路过君 阅读(73) 评论(0) 推荐(0) 编辑

spring 自定义配置属性 嵌套 集合
摘要:@ConfigurationProperties("init-data.auth")public class AuthPropert... 阅读全文

posted @ 2020-03-24 10:34 路过君 阅读(251) 评论(0) 推荐(0) 编辑

spring 自定义配置属性
摘要:依赖 org.springframework.boot spring-boot-configuration-proce... 阅读全文

posted @ 2020-03-24 09:33 路过君 阅读(88) 评论(0) 推荐(0) 编辑

jpa异常 org.hibernate.TransientPropertyValueException
摘要:object references an unsaved transient instance - save the transie... 阅读全文

posted @ 2020-03-23 16:46 路过君 阅读(397) 评论(0) 推荐(0) 编辑

spring笔记 启动时自动运行
摘要:CommandLineRunner ApplicationRunner 参考资料 阅读全文

posted @ 2020-03-23 16:17 路过君 阅读(33) 评论(0) 推荐(0) 编辑

spring cloud笔记 oauth2授权服务 默认tokenService配置源码
摘要:AuthorizationServerEndpointsConfiguration ...private Authorization... 阅读全文

posted @ 2020-03-23 15:21 路过君 阅读(580) 评论(0) 推荐(0) 编辑

spring cloud 搭建oauth2授权服务 使用redis存储令牌
摘要:依赖 org.springframework.boot spring-boot-starter-data-redis ... 阅读全文

posted @ 2020-03-23 15:09 路过君 阅读(80) 评论(0) 推荐(0) 编辑

spring cloud笔记 oauth2授权服务 clientDetails配置源码
摘要:clientDetails @EnableAuthorizationServer ...@Import({... Authoriza... 阅读全文

posted @ 2020-03-23 13:32 路过君 阅读(365) 评论(0) 推荐(0) 编辑

spring笔记 验证框架
摘要:验证框架 依赖注解注 依赖 org.springframework.boot spring-boot-starter... 阅读全文

posted @ 2020-03-20 12:01 路过君 阅读(41) 评论(0) 推荐(0) 编辑

IDEA 插件整理
摘要:JAVA调用方法自动填充参数 auto filling(转) 生成代码 Easy Code(转) 自动生成set GenerateA... 阅读全文

posted @ 2020-03-20 11:57 路过君 阅读(46) 评论(0) 推荐(0) 编辑

spring security笔记 默认登陆页面源码
摘要:依赖 spring-security-web 源码 org.springframework.security.web.authent... 阅读全文

posted @ 2020-03-20 11:55 路过君 阅读(63) 评论(0) 推荐(0) 编辑

导航

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示