Java代码在执行时一旦被编译器编译为机器码,下一次执行的时候就会直接执行编译后的代码,也就是说,编译后的代码被缓存了起来。缓存编译后的机器码的内存区域就是CodeCache。 这是一块独立于java堆之外的内存区域。除了JIT编译的代码之外,java所使用的本地方法代码(JNI)也会存在CodeC ...
分类:
其他好文 时间:
2020-10-08 18:12:29
阅读次数:
19
1.背景 线上服务器偶尔报错如下: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying ...
分类:
其他好文 时间:
2020-09-24 21:51:23
阅读次数:
47
Curl命令在linux操作系统中经常来测试网络和url的联通性,模拟正常的网络访问,当然除了这个作用之外,作为y一款强大的工具,curl还支持包括HTTP、HTTPS、ftp等众多协议,还支持POST、cookies、认证、从指定偏移处下载部分文件等功能 1.curl -I选项,只获得对方的响应首 ...
分类:
Web程序 时间:
2020-09-18 17:27:27
阅读次数:
88
Converting any HTML template into a Django template The normal way Any HTML, CSS, JS or BootStrap template can be converted into a Django compatible t ...
分类:
Web程序 时间:
2020-09-18 02:57:40
阅读次数:
47
#多个装饰器装饰一个函数 def wraper1(func): def inner1(): print('wraper1 before func') func() print('wraper1 after func') return inner1def wraper2(func): def inne ...
分类:
其他好文 时间:
2020-09-17 22:23:08
阅读次数:
18
I joined SAP China seven years ago after graduation and knew nothing about SAP or ABAP at that time. Now I am working as a development expert in SAP. ...
分类:
其他好文 时间:
2020-09-17 19:37:39
阅读次数:
29
cut in 插嘴,干预,拦截,超车 cut out 裁剪(衣服),击败,切掉 cut on 刻在…上,根据…裁剪 cut up 切碎,抨击 cut about 乱切 cut from 从…砍下 cut off 砍断 cut off from 遮拦 cut down 砍倒 cut after 追赶 ...
分类:
其他好文 时间:
2020-09-17 14:18:07
阅读次数:
24
事件包括 insert语句 update语句 delete语句 创建触发器 创建只有一条执行语句的触发器 create trigger 触发器名 before|after 触发事件 on 表名 for each row 执行语句 创建多条执行语句的触发器 create trigger 触发器名 be ...
分类:
其他好文 时间:
2020-09-17 12:52:48
阅读次数:
30
spring-cloud-openfeignusesOpenFeign9.tillv2.0.3.RELEASEanduses10.after.Anyway,thedependencyalreadyhassuitablefeign-formversion,seedependencypom,soyoudon‘tneedtospecifyitseparately;spring-cloud-sta
分类:
编程语言 时间:
2020-09-15 21:14:38
阅读次数:
41