上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页

2020年1月8日

cookie设置HttpOnly、Secure属性

摘要: 参考网址:https://www.cnblogs.com/Irving/archive/2013/03/08/2949106.html c# System.Web.Security.FormsAuthenticationTicket tk = new FormsAuthenticationTicke 阅读全文

posted @ 2020-01-08 14:18 七七2020 阅读(2527) 评论(0) 推荐(0) 编辑

web.config,system.web中加<machineKey

摘要: 1、生成machineKey https://blog.csdn.net/zhengzhengyi/article/details/49277589 2、在web.config,system.web中加<machineKey 阅读全文

posted @ 2020-01-08 14:16 七七2020 阅读(827) 评论(0) 推荐(0) 编辑

2020年1月6日

登陆页面粒子效果

摘要: 使用 particles.min.js 参考链接:https://www.cnblogs.com/zx-admin/p/7030978.html 阅读全文

posted @ 2020-01-06 16:49 七七2020 阅读(714) 评论(0) 推荐(0) 编辑

2020年1月4日

cmd命令登陆oracle

摘要: 打开cmd,输入:sqlplus/nolog输入: conn 用户名/密码@127.0.0.1/数据库名 阅读全文

posted @ 2020-01-04 16:34 七七2020 阅读(3119) 评论(0) 推荐(0) 编辑

2020年1月3日

oracle 千万级数据表增加索引

摘要: 千万级数据表增加索引时容易卡住,使用 nologging (不记录日志)。 create index index_three on table_name(monitor_time,code1,code2) nologging 阅读全文

posted @ 2020-01-03 17:56 七七2020 阅读(4685) 评论(0) 推荐(0) 编辑

2019年12月16日

springboot报错:expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

摘要: springboot Controller中引用 @Autowired private IXxxService xxxService; 报错;expected at least 1 bean which qualifies as autowire candidate. Dependency anno 阅读全文

posted @ 2019-12-16 10:31 七七2020 阅读(6461) 评论(0) 推荐(1) 编辑

2019年12月11日

数据库备份

摘要: 一、mysql 1、停止使用数据库的程序 2、服务->MYSQL->停止服务 3、压缩E盘mysql文件夹 4、压缩完成后,启动MYSQL服务,打开程序 5、如果数据库有定时任务: -- 检查事件定时启动状态 SHOW VARIABLES LIKE 'event_scheduler'; -- 如果没 阅读全文

posted @ 2019-12-11 09:14 七七2020 阅读(138) 评论(0) 推荐(0) 编辑

2019年12月10日

spring-boot swagger2 设置全局token,说明页面接口无法带入token

摘要: 1、swagger配置类 // 验证 private List<ApiKey> securitySchemes() { List<ApiKey> apiKeyList = new ArrayList(); apiKeyList.add(new ApiKey("token", "token", "he 阅读全文

posted @ 2019-12-10 13:40 七七2020 阅读(5137) 评论(0) 推荐(0) 编辑

2019年12月2日

c# 结构体中包含结构体数组的使用

摘要: c# 中定义了两个结构体,B中包含多组A #region 结构体A struct A { public int dataNum; public double inVol; }; #endregion #region 结构体B struct B { public string s1; public s 阅读全文

posted @ 2019-12-02 17:03 七七2020 阅读(9451) 评论(0) 推荐(0) 编辑

2019年11月25日

百度地图api热力图时报错Cannot read property 'y' of undefined

摘要: 将百度地图热力图中demo复制到自己的项目中使用时,页面调试中报错 原因:逐步调试发现 map.addOverlay(heatmapOverlay);此步报错。分析:页面还有其他逻辑,应该是没有加载完成,所以热力图初始化及加载时增加 window.onload=function(){},待页面加载完 阅读全文

posted @ 2019-11-25 09:51 七七2020 阅读(1933) 评论(0) 推荐(1) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页

导航