- 博客(12)
- 收藏
- 关注
原创 Mysql时间戳CURRENT_TIMESTAMP时区问题time_zone
【代码】Mysql时间戳CURRENT_TIMESTAMP时区问题time_zone。
2024-04-16 09:22:11
335
1
原创 mysql 8(liunx/windows)安装与忘了密码、修改密码
Liunx/window 安装mysql8相关操作,忘记密码,强制修改密码。安装异常处理:Authentication plugin ‘caching_sha2_password’ cannot be loaded: /usr/lib64/mysql/plugin/caching_sha2_password.so: cannot open shared objectCan’t connect to local MySQL server through socket '/var/lib/mysql/my
2023-03-27 13:20:04
206
1
原创 spring boot初始化异步线程池
【代码】spring boot初始化异步线程池。AsyncConfigurer,ThreadPoolTaskExecutor,Executor
2022-10-11 17:25:19
345
1
原创 MongoDB创建角色及权限说明
MongoDB创建角色use admin // 切换到admindb.createUser( { user: “test”, pwd: “testpassword”, roles: [ { role: “userAdminAnyDatabase”, db: “admin” } ] })db.auth(‘user’,‘password’); //验证用户不要多次验证多次...
2019-09-20 10:49:02
695
原创 js 金额大写转换
function DX(n) { //金额大写转换函数if (!/^(0|[1-9]\d*)(\.\d+)?$/.test(n))return "数据非法";var unit = "千百拾亿千百拾万千百拾元角分", str = "";n += "00";var p = n.indexOf('.');if (p >= 0)n = n.substring(0, p) +...
2012-07-27 14:40:08
144
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人