上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 服务器 package com.code.modules.roaddiseasecontroller; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.code.modules.u 阅读全文
posted @ 2020-05-29 15:02 wc_nan 阅读(208) 评论(0) 推荐(0) 编辑
摘要: CREATE USER etcportal IDENTIFIED BY etcportal; GRANT CONNECT,RESOURCE,EXP_FULL_DATABASE,IMP_FULL_DATABASE TO etcportal; 阅读全文
posted @ 2020-05-28 09:36 wc_nan 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 声音:非原著,借鉴借鉴 1418 - This function has none of DETERMINISTIC, NOSQL, or READS SQL DATA in its declaration and binary logging isenabled (you *might* want 阅读全文
posted @ 2020-05-21 13:39 wc_nan 阅读(2180) 评论(0) 推荐(0) 编辑
摘要: var date1= '2015/05/01 00:00:00'; //开始时间 var date2 = new Date(); //结束时间 var date3 = date2.getTime() - new Date(date1).getTime(); //时间差的毫秒数 // //计算出相差天 阅读全文
posted @ 2020-04-10 10:01 wc_nan 阅读(297) 评论(0) 推荐(0) 编辑
摘要: SELECT sys_guid(),rawtohex(sys_guid()) from dual; 阅读全文
posted @ 2020-04-02 13:37 wc_nan 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: window.addEventListener("beforeunload", function(event) { clearTimeout(window.video_timer); //清除定时 }); 阅读全文
posted @ 2020-03-31 11:17 wc_nan 阅读(452) 评论(0) 推荐(0) 编辑
摘要: //list 对象 交集差集 List<Map> newList = list.stream().filter(one -> { List<Boolean> result = hisList.stream().map(two -> one.toString().equals(two.toString 阅读全文
posted @ 2020-03-30 14:35 wc_nan 阅读(1028) 评论(0) 推荐(0) 编辑
摘要: 需求: 在tomcat中,每月一号、每日、每分钟自动执行指定的任务。 开发环境: java1.7 + tomcat 实现思路: 在tomcat中,添加监听器,在监听器中设置定时任务。 1.监听: 新建监听类implents ServletContextListener,实现其中的方法即可。 讲解: 阅读全文
posted @ 2020-03-23 18:49 wc_nan 阅读(4373) 评论(0) 推荐(0) 编辑
摘要: <ul class="nav nav-tabs"> <li class="active"><a data-toggle="tab" href="#rypc_leiji">累计</a></li> <li><a data-toggle="tab" href="#rypc_dangri">当日</a></ 阅读全文
posted @ 2020-02-26 08:56 wc_nan 阅读(148) 评论(0) 推荐(0) 编辑
摘要: select 'drop table '||table_name||';' from cat where table_type='TABLE' 阅读全文
posted @ 2019-12-19 09:25 wc_nan 阅读(293) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页