摘要: controller 接收参数 用 HttpServletRequest 代替 @RequestParam() 接收参数 picFile 前台 传文件的参数名字 , 这样 前段 传 null 就可以 不必须 存文件了 https://blog.csdn.net/zhaofuwu/article/de 阅读全文
posted @ 2018-11-23 23:03 AngDH 阅读(715) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-11-05 23:37 AngDH 阅读(110) 评论(0) 推荐(0)
摘要: 1 在pom.xml中加入Swagger2的依赖 2 3 . controller https://www.jianshu.com/p/8033ef83a8ed https://www.imooc.com/article/20521 在浏览器中输入你配置的网址就可以访问http://localhos 阅读全文
posted @ 2018-11-05 18:33 AngDH 阅读(177) 评论(0) 推荐(0)
摘要: use information_schema;select table_name,table_rows from tables where table_schema='cargo_new' order by table_rows desc limit 3 -- cargo_new (选择数据库) h 阅读全文
posted @ 2018-11-05 09:37 AngDH 阅读(1027) 评论(0) 推荐(0)
摘要: http://www.cnblogs.com/xiongxx/p/6057558.html https://jingyan.baidu.com/article/1876c8524ee0d0890a137646.html 阅读全文
posted @ 2018-11-02 14:36 AngDH 阅读(115) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-10-26 12:32 AngDH 阅读(154) 评论(0) 推荐(0)
摘要: 安装 首先下载gcc编译器以及nginx一些模块的依赖库,通常有pcre库(支持rewrite模块),zlib(支持gzip模块)库,openssl(支持ssl模块)库等。这些库可以编译安装,也可以yum安装,这里选择yum安装。 # yum install -y gcc gcc-c++ pcre 阅读全文
posted @ 2018-10-23 22:38 AngDH 阅读(126) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/u010128608/article/details/76618263 https://blog.csdn.net/zhuyucheng123/article/details/21524457 阅读全文
posted @ 2018-10-19 13:35 AngDH 阅读(198) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-10-14 19:02 AngDH 阅读(228) 评论(0) 推荐(0)
摘要: 1. touch xxx(文件名字).sh 2. vim xxx.sh 写入 #!/bin/shcd `dirname $0`pwdd=`date +%Y%m%d`d7=`date -d'7 day ago' +%Y%m%d`cd ../logs/cp catalina.out catalina.o 阅读全文
posted @ 2018-10-09 22:51 AngDH 阅读(261) 评论(0) 推荐(0)