Mybatis Generator最完整配置详解[mybatis代码自动生成配置] 1)说明 generator配置文件: 1.1) 配置生成器 : <!-- 配置生成器 --> <generatorConfiguration>....</generatorConfiguration> 1.2) $ ...
分类:
其他好文 时间:
2020-07-04 19:12:56
阅读次数:
85
Spring读取配置的两种方式 注解的方式 ApplicationContext ac=new AnnotationApplicationContext("MyConfig.class") package com.example.demo; import org.springframework.co ...
分类:
编程语言 时间:
2020-07-04 18:58:16
阅读次数:
59
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v\4.0\V140\Application Type\Linux\1.0\Linux.targets(248 ,5): error : unrecognized command line opton "-st ...
分类:
编程语言 时间:
2020-07-04 15:25:42
阅读次数:
70
切片机制源码: ①for (FileStatus file: files) 每个文件单独切片。 ②long length = file.getLen() 获取文件大小。 ③while (((double) bytesRemaining)/splitSize > SPLIT_SLOP) SPLIT_S ...
分类:
其他好文 时间:
2020-07-04 11:49:16
阅读次数:
106
预览选中的图片文件 jQuery $("#selectImage").change(function(){ $("#image").attr("src",URL.createObjectURL($(this)[0].files[0])); }); Vue data:{ image:"" }, met ...
分类:
编程语言 时间:
2020-07-04 01:47:56
阅读次数:
113
1.MD——建立子目录功能:创建新的子目录类型:内部命令ü格式:MD[盘符:][路径名]〈子目录名〉FOR 1:C:\>md y /* 建立y子目录 */2.CD——改变当前目录功能:显示当前目录ü类型:内部命令ü格式:CD[盘符:][路径名][子目录名]说明:CD命令不能改变当前所在的盘,CD.. ...
分类:
其他好文 时间:
2020-07-03 21:34:07
阅读次数:
256
setting.json { // vscode默认启用了根据文件类型自动设置tabsize的选项 "editor.detectIndentation": false, // 重新设定tabsize "editor.tabSize": 2, // 每次保存的时候自动格式化 "editor.forma ...
分类:
其他好文 时间:
2020-07-03 19:27:00
阅读次数:
85
获取某目录下所有子文件和子目录 function getDirContent($path){ if(!is_dir($path)){ return false; } //readdir方法 /* $dir = opendir($path); $arr = array(); while($conten ...
分类:
Web程序 时间:
2020-07-03 17:23:14
阅读次数:
67
//文件转换为字节 public static byte[] File2Bytes(string path) { if (!System.IO.File.Exists(path)) { return new byte[0]; } FileInfo fi = new FileInfo(path); b ...
分类:
其他好文 时间:
2020-07-03 17:09:28
阅读次数:
69