- 博客(9)
- 收藏
- 关注
原创 bladex 动态数据源 ‘url‘ attribute is not specified and no embedded datasource could be configured.解决方案
bladex 动态数据源 'url' attribute is not specified and no embedded datasource could be configured.解决方案
2022-11-11 12:22:34
1065
原创 bladex定时任务job handler [xxx] not found解决
bladex定时任务job handler [xxx] not found问题解决方案
2022-11-11 11:42:42
3587
原创 MySQL添加删除约束
表级约束通过 show create table 表名; 可以查看有哪些约束.以及约束名因为下面有些需要使用约束名.说明: <>内容为可选部分.即 使用可以不写.规律: 基本都是 add实现添加 drob实现删除 .可能有其他方式实现,我只知道这些.添加主键约束 alter table 表名称 add <constraint> <约束名> primary key(列名);删除主键约束 alter table 表名称 drop <constraint>
2020-08-13 18:15:31
514
原创 回调函数与Promise
回调函数的目的获取函数中异步操作的结果,则必须通过回调函数获取回调函数本质回调函数的本质就是拿一个函数当参数传递给异步方法.在这个异步函数的内部调用传进来的函数,并把所需要传递出去的数据作为这个函数的参数,这样数据就传递出去.示例function fn(callback){ setTimeout(()={ let data = '数据' callback(data) },10...
2020-02-08 17:48:23
1586
2
原创 Servlet连接MySQL数据库步骤
1.加载驱动程序Class.forName("com.mysql.cj.jdbc.Driver");2.建立连接对象String dburl = "jdbc:mysql://127.0.0.1:3306/数据库名?useSSL=false&serverTimezone=UTC"Connection conn = DriverManager.getConnection(dburl,"...
2019-10-27 13:48:16
15226
原创 自定义C#脚本模板
第一步:在Editor文件夹下创建ScriptTemplates文件夹,然后在该文件夹下创建myScript.cs.txt文件,在该文件里面写模板第二步:在Editor文件下创建一个C#脚本(Script_04_01 ),该脚本内容为:using System.Collections;using System.Collections.Generic;using System.IO;usi...
2019-09-29 16:55:36
1056
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人