08 2018 档案
摘要:ajax同步 : 意味着此时请求Server后,JS代码不再继续执行,等待Server返回后才继续往下执行。 ajax异步 : 意味着此时请求Server后,JS代码继续执行,不管Server什么时候返回。
阅读全文
摘要:when 如果 then 那么 else 否则 end 结束 SELECT * FROM A WHERE 1=1 AND( CASE WHEN (? IN (49)) THEN ttc.toStoreTime <= DATE_SUB(NOW(), INTERVAL 48 HOUR) AND ttc.
阅读全文
摘要:CentOS6.5 64位 (docker目前仅支持64位)内核必须在3.10及以上1. uname -r 查看内核版本2. 升级内核到3.10版本(带aufs模块) cd /etc/yum.repos.d wget http://www.hop5.in/yum/el6/hop5.repo yum
阅读全文
摘要:Linux搜索命令:find / -name 'nginx' 搜索根目录下文件名为‘nginx’的文件夹 。find / -name 'nginx.conf' 搜索根目录下文件名为‘nginx.conf’的文件 。 模糊搜索:文件名前后加入* 。
阅读全文
摘要:链接:https://blog.csdn.net/qin_zhimou/article/details/45603481 1. The container 'Maven Dependencies' references non existing library解决方法,将eclipse中maven插
阅读全文
摘要://防止二次提交 var isQuerySmSCodeFlag = false; //请求初始标识 var SmSCodeCount = 0; //发送 function getSmsAuthcode(){ $("#yuyinYzm").hide(); var carId =$('#carId').val(); ...
阅读全文
摘要:查看dns服务ip: 命令: ipconfig/all 查看dns缓存: 命令:ipconfig/displaydns 强制更新缓存: 命令:ipconfig /flushdns
阅读全文
摘要:严重: Exception sending context destroyed event to listener instance of class org.springframework.web.context.ContextLoaderListenerjava.lang.IllegalStat
阅读全文
摘要:原因:Maven插件[Run As]-[Maven build]时并未为其指定goal或phase 解决办法:pom中加入<build> <finalName>demo_1SpringBoot</finalName> </build>
阅读全文