url: jdbc:mysql://${DB_SERVER:localhost}:3306/utai?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC&allowMultiQueries=true使用分号分割的批量sql,要添加配置 ...
分类:
数据库 时间:
2021-06-28 21:19:41
阅读次数:
0
Warning: World-writable config file '/etc/mysql/my.cnf' is ignoredERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mys ...
分类:
数据库 时间:
2021-06-28 20:57:43
阅读次数:
0
问题:按照正常的程序将session 共享引入工程,但是一直取不到 原因:springboot 的版本不同导致,存session的springboot 用的是springboot1.5.6,而取session的springboot版本是2.1.5。 解决方式1:统一springboot的版本(特别推 ...
分类:
其他好文 时间:
2021-06-28 20:43:18
阅读次数:
0
官方说明 具体原因 继续用原来的配置的方法 配置文件里删掉最后一行的 Le_API='https://acme.zerossl.com/v2/DV90' (之前配置应该没有这一行),再执行 acme.sh --set-default-ca --server letsencrypt 使用新的配置的办法 ...
分类:
其他好文 时间:
2021-06-28 20:41:52
阅读次数:
0
公司项目C#操作mysql数据库时出现几个问题的解决方案作下记录 1、The MySQL server is running with the --secure-file-priv option so it cannot execute this statement” 解决方法:修改my.ini 配 ...
分类:
数据库 时间:
2021-06-28 20:37:38
阅读次数:
0
识别银行卡云函数card2/index.js: const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV, }) exports.main = async (event, context) = ...
分类:
微信 时间:
2021-06-28 20:21:21
阅读次数:
0
一 zk基本概念 集群角色 Leader:为客户端提供读写服务 Follower:提供读服务,所有写服务都需要转交给 Leader 角色,参与选举 Observer:提供读服务,不参与选举过程,一般是为了增强 zk 集群的读请求并发能力 会话(session) zk 客户端与服务端之间的连接 通过心 ...
分类:
其他好文 时间:
2021-06-28 19:47:34
阅读次数:
0
<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1"> <match url="^index.html" /> < ...
分类:
Web程序 时间:
2021-06-28 19:43:32
阅读次数:
0
1、在java链接oracle12时出现java.sql.SQLException: ORA-28040: 没有匹配的验证协议,如下图所示: 2、出现以上问题是由于连接数据库驱动和oracle版本不一致造成的,可以通过下载新的驱动解决,也可以使用修改配置的方式,在Oracle的安装路径下找到sqln ...
分类:
数据库 时间:
2021-06-28 19:42:56
阅读次数:
0
简述 在常见的网站上,我们需要登录才能访问到其他资源。一般来说我们的登录信息会用session存储,所以我们可以使用filter进行一个登录验证的过滤。 package cn.itcast.web.filter; import com.sun.deploy.net.HttpRequest; impo ...
分类:
其他好文 时间:
2021-06-28 19:38:28
阅读次数:
0