记录一个小坑,开发压测平台的时候碰到的。 背景:现在在开发压测平台,抽象类一些常用拦截器作为 starter ,供所有 module 使用(目前我们有7个) 。starter 中使用的一些 entity, 使用了 Threadlocal ,用于保存用户信息和部门信息 问题:在 module 依赖了 ...
分类:
其他好文 时间:
2021-06-30 17:41:03
阅读次数:
0
转自:https://blog.csdn.net/gao_zhennan/article/details/79099940 一,问题发生今天(18/1/18),我在尝试删除一个定义为auto_increment的主键时(所用语句:alter table testdrop primary key)结果 ...
分类:
数据库 时间:
2021-06-30 17:40:13
阅读次数:
0
function baiduToWgs84(position){ var bdLon = position[0]; var bdLat = position[1]; var PI = 3.14159265358979324; var x_pi = 3.14159265358979324 * 3000 ...
分类:
其他好文 时间:
2021-06-29 16:12:11
阅读次数:
0
TypeError: 'generator' object is not subscriptable,错误的原因就是把不具有下标操作对象用了对象[i],所以需要+list转化,加了之后,就不会报错了 ...
分类:
其他好文 时间:
2021-06-29 15:59:51
阅读次数:
0
Java虚拟机会预先为加载到内存中的每个类维护一个方法表(Method Table),其中列出了所有类中所有方法的签名。 现在有2个类A和B,其中,B是A的子类,和一个B类型的对象x,当调用x.f(args)时: 1.获取候选方法 首先,编译器会查看对象的类型和被调用的方法名。编译器会在在B类及其超 ...
分类:
编程语言 时间:
2021-06-29 15:32:19
阅读次数:
0
1.普通函数this指向window; function fn() { console.log('普通函数的this' + this); } window.fn(); 2.对象的方法 this指向调用者O var o={ sayHi:function(){ console.log('对象方法的thi ...
分类:
其他好文 时间:
2021-06-29 15:30:45
阅读次数:
0
Js得到选中的文字 (function getSelectionText() { if (window.getSelection) { return window.getSelection().toString(); } else if (document.selection && document ...
分类:
其他好文 时间:
2021-06-28 21:07:38
阅读次数:
0
编译器会给类的非静态成员函数添加一个this参数。 int square(int num) { return num * num; } class Hehe{ public: int square(int num) { return num * num; } }; int main() { int ...
分类:
其他好文 时间:
2021-06-28 20:58:16
阅读次数:
0
一、简介 基于matlab国际象棋 二、源代码 function mychess() %clear %close all global Grid_n Grid_w Grid_h Board BoardWhite chess_x chess_y Whowin Grid_n=8; Grid_w=60; ...
分类:
其他好文 时间:
2021-06-28 20:56:37
阅读次数:
0
jQuery事件: 1、事件注册 单个事件注册 element.事件(function() {}) 例:$(“div”).click(function(){ 事件处理程序 }) 2、事件处理 事件处理on()绑定事件 on() 方法在匹配元素上绑定一个或多个事件的事件处理函数 element.on( ...
分类:
Web程序 时间:
2021-06-28 20:47:55
阅读次数:
0