上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 52 下一页

2020年7月28日

JS 变量作用域导致的一个坑

摘要: 错误的案例: funcA = function(){ var obj = [] var numbers = []; for(var ... 阅读全文

posted @ 2020-07-28 16:54 路过君 阅读(84) 评论(0) 推荐(0) 编辑

2020年7月24日

idea 远程调试

摘要: 1. 配置IDEA远程调试 菜单Run - Edit Configurations… 增加远程配置 填写远程服务IP,调试端口,选择... 阅读全文

posted @ 2020-07-24 10:11 路过君 阅读(271) 评论(0) 推荐(0) 编辑

2020年7月23日

idea启用springboot项目热部署

摘要: 1. 启用自动构建 2. 启用应用运行时自动编译 alt+ctrl+shift+/ 3. 启用springboot项目运行更新... 阅读全文

posted @ 2020-07-23 08:34 路过君 阅读(127) 评论(0) 推荐(0) 编辑

2020年7月22日

spring security 密码过期强制修改密码

摘要: 定义认证失败处理器处理CredentialsExpiredException密码过期异常 public class Authenti... 阅读全文

posted @ 2020-07-22 16:12 路过君 阅读(1110) 评论(0) 推荐(0) 编辑

2020年7月16日

Chrome 浏览使用IFRAME嵌套站点cookie传递失败

摘要: Chrome 51 开始,浏览器的 Cookie 新增加了一个SameSite属性,用来防止 CSRF 攻击和用户追踪。Chrome... 阅读全文

posted @ 2020-07-16 09:20 路过君 阅读(158) 评论(0) 推荐(0) 编辑

2020年7月15日

EXTJS7 自定义组件配置属性启用双向绑定

摘要: 使用publishes/twoWayBindable都可以启用配置属性的变更通知,既可实现双向绑定 // 默认配置属性只能做入参co... 阅读全文

posted @ 2020-07-15 14:29 路过君 阅读(155) 评论(0) 推荐(0) 编辑

2020年7月13日

EXTJS7 publishes将配置属性发布到viewModel

摘要: 在组件声明使用publishes Ext.define('myComponent', { extend: 'Ext.Componen... 阅读全文

posted @ 2020-07-13 08:27 路过君 阅读(80) 评论(0) 推荐(0) 编辑

2020年7月10日

nginx 启用websocket支持

摘要: nginx.conf修改配置 http { # http段增加 map $http_upgrade $connection_upgr... 阅读全文

posted @ 2020-07-10 09:53 路过君 阅读(139) 评论(0) 推荐(0) 编辑

2020年7月8日

spring boot 使用websocket

摘要: 依赖 org.springframework.boot spring-boot-starter-websocket 配... 阅读全文

posted @ 2020-07-08 16:58 路过君 阅读(87) 评论(0) 推荐(0) 编辑

spring data jpa 使用自定义repository实现类

摘要: spring data jpa中使用JpaRepository等接口定义repository时,将默认使用SimpleJpaRepo... 阅读全文

posted @ 2020-07-08 15:15 路过君 阅读(961) 评论(0) 推荐(0) 编辑

上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 52 下一页

导航