在connection的生命里,会一直有一个user thread(以及user thread对应的THD)陪伴它。 Connection和Session概念 来自Stackoverflow的一个回答: A session is just a result of a successful conne ...
分类:
数据库 时间:
2021-03-17 14:12:26
阅读次数:
0
ExceptionFilter 1. 自定义一个CustomExceptionFilterAttribute,实现IExceptionFilter接口 2. 实现方法,先判断异常是否被处理过。没处理过,就先处理 3. 分情况处理。 如果是ajax请求,就返回JsonResult。否则,返回错误页面 ...
分类:
Web程序 时间:
2021-03-16 11:43:29
阅读次数:
0
1- var str = “hgDzGHjhcxghvcgxzhjzcgjhxzgcjhgsduyfuys”将字符串中出现次数最多的字母弹框输出; var str = 'hgDzGHjhcxghvcgxzhjzcgjhxzgcjhgsduyfuys'; var result = maxN(str); ...
分类:
其他好文 时间:
2021-03-08 14:18:22
阅读次数:
0
1、借助<input type="file" />标签上传PDF文件; 2、创建FileReader方法,var reader = new FileReader(); 3、执行reader.onload = function(){console.log(reader.result)}; 4、执行re ...
分类:
其他好文 时间:
2021-03-08 14:06:20
阅读次数:
0
中间件推荐 1.1.1. 列表 谷歌翻译欢迎查看原文 https://github.com/gin-gonic/contrib/blob/master/README.md RestGate - REST API端点的安全身份验证 staticbin - 用于从二进制数据提供静态文件的中间件/处理程序 ...
分类:
其他好文 时间:
2021-03-06 15:05:34
阅读次数:
0
Security and Cryptography in Python - Hash Functions(3) How password are Verified https://docs.python.org/3/library/hashlib.html https://en.wikipedia. ...
分类:
编程语言 时间:
2021-03-03 12:13:31
阅读次数:
0
模块化结合typescript - 泛型改造 // 为函数添加泛型 function useURLLoader<T>(url: string) { const result = ref<T | null>(null) // 在应用中的使用,可以定义不同的数据类型 interface DogResul ...
分类:
其他好文 时间:
2021-03-01 13:32:50
阅读次数:
0
今天来试试mybatis新的写法,0配置文件 代码可以这么写 package com.cnsuning.com.mapper; public interface UserMapper { @Select("SELECT * FROM users") @Results({ @Result(proper ...
分类:
编程语言 时间:
2021-03-01 13:06:16
阅读次数:
0
2.25 python字符串(13个) 1.以XX开头 (startswith()) v1="我爱我的祖国" result = v1.startswith("我") #判断是否以“我”开头,如果是返回"true" print(result) #true #例 v1=input("请输入户籍所在地") ...
分类:
编程语言 时间:
2021-02-27 13:13:22
阅读次数:
0
简单记一下使用element UI表格涉及到合并时的方法: 1. 合并行: 先对数据做处理: dealWithData () { const result = [] let pos = 0 const data = this.tableData for (let i = 0; i < data.le ...
分类:
其他好文 时间:
2021-02-27 13:04:55
阅读次数:
0