摘要:
java -version 阅读全文
摘要:
jdk:1.8sql Driver:6.4.0解决方法:JDK目录下的jre\lib\security,打开java.security找到jdk.tls.disabledAlgorithms,如下图 把3DES_EDE_CBC注释掉。保存,测试成功!补充说明:开发环境改的是上面路径,实际生产环境修改 阅读全文
摘要:
修改settings.xml文件,把自定义目录配置上去。 阅读全文
摘要:
Maven 仓库默认在国外, 国内使用难免很慢,我们可以更换为阿里云的仓库。 第一步:修改 maven 根目录下的 conf 文件夹中的 setting.xml 文件,在 mirrors 节点上,添加内容如下: <mirrors> <mirror> <id>alimaven</id> <name>a 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Thr 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; names 阅读全文
摘要:
COMMENT on column 表.字段 is '字段注释'; COMMENT ON table 表 IS '表注释'; 阅读全文
摘要:
网络不好,替换SpringBoot初始化地址 , 修改为阿里云地址。 阿里云地址 https://start.aliyun.com/ 阅读全文
摘要:
原文地址:https://blog.csdn.net/weixin_44299027/article/details/120848738 一、项目背景 最近在看Spring源码书籍,从GitHub把Spring源码拉取下来之后,想写个Demo跟踪源码。Demo已写好,运行发现报错,详情如下: 二、原 阅读全文
摘要:
Vue 2.X config文件夹中有一个index.js其中部分内容如下,port即为端口号,在这里更改即可。 Vue 3.X Vue 3.x中修改端口号则需要在项目根目录下创建一个vue.config.js,内容如下。 module.exports = { devServer:{ port:80 阅读全文