动态sql 复用sql语句 1.定义sql片段 <sql id="xxx_column">被复用的片段</sql> 2.引用sql片段 <include refid="xxx_column"></include> 动态sql 简化查询 DAO简化 将所有可能查询的参数,封装成XxxQuery对象 w ...
分类:
其他好文 时间:
2020-08-15 22:29:43
阅读次数:
58
VUE-CLI的服务器端部署后,页面展示路由出错。 在vue-cli搭建的项目打包部署到服务器之后,会发现首页的地址会出错: 比如: ? 我在服务端用(nginx)^~ /test 去匹配前缀带有/test/地址,跳转到静态资源即打包完成的首页。 ? 但是当我访问http://xxx.com/tes ...
分类:
其他好文 时间:
2020-08-15 22:29:08
阅读次数:
60
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="en"> <head> <meta charset="U ...
分类:
Web程序 时间:
2020-08-12 15:56:34
阅读次数:
81
<?php $txt = "http://www.xxx.cn/sitemap.txt"; //读取远程txt; //是否存在 if(file_get_contents($txt)){ $data = file($txt); //将文件存放在一个数组中; $num = count($data); / ...
分类:
编程语言 时间:
2020-08-11 15:52:05
阅读次数:
69
bash: ./arm-none-linux-gnueabi-gcc: No such file or directory解决方法 https://blog.csdn.net/eydwyz/article/details/98033852 ubuntu进行apt-get时候出现Package xxx ...
分类:
系统相关 时间:
2020-08-10 00:08:49
阅读次数:
72
备忘 安装 rc-service 服务 Alpine使用的是OpenRCinit系统,而rc-service是openrc的一部分,所以安装openrc即可,使用如下命令安装: apk add openrc --no-cache 添加自定义服务 vim /etc/init.d/xxx #!/sbin ...
分类:
系统相关 时间:
2020-08-09 13:06:45
阅读次数:
131
环境:oracle12c 1、常用字典 DBA_xxx All objects in the root or a pluggable database ALL_xxx Objects accessible by the current user in a PDB USER_xxx Objects o ...
分类:
数据库 时间:
2020-08-08 17:46:57
阅读次数:
102
1.新建一个文件xxx.bat 2.编辑模式打开,输入代码: @echo off # start cmd /k "cd /指定盘 jenkins.war所在的目录 && java -jar jenkins.war --httpPort=8080" start cmd /k "cd /d D:\sof ...
分类:
其他好文 时间:
2020-08-08 17:31:33
阅读次数:
54
Grunt使用(有点类似plop) - yarn init -y //新建项目 - yarn add grunt //添加grunt - 项目根目录 新建gruntfile.js文件,定义grunt任务 - yarn grunt 执行默认任务 注意 - yarn grunt xxx 执行regist ...
分类:
其他好文 时间:
2020-08-07 12:34:57
阅读次数:
82
文章目录 在VScode中安装python插件 解决报错SyntaxError: Non-ASCII character '\xef' in file 解决报错"No module named 'xxx' " VScode上使用Jupyter Notebook的方法 20.02.26 最新方法:Co ...
分类:
编程语言 时间:
2020-08-04 16:39:13
阅读次数:
121