摘要: import net.sf.json.JSONArray;import net.sf.json.JSONObject; String content = inBankOdd.getContent().replace(""","\""); if(!content.equals("") && 阅读全文
posted @ 2018-12-29 11:13 吴大哥 阅读(3442) 评论(1) 推荐(0) 编辑
摘要: js实现: <script> function GetQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match( 阅读全文
posted @ 2018-12-07 14:14 吴大哥 阅读(1025) 评论(0) 推荐(0) 编辑
摘要: <%@ page contentType="text/html;charset=UTF-8" %><%@ include file="/WEB-INF/views/include/taglib.jsp"%><html><head> <title>探测器管理</title> <meta name="d 阅读全文
posted @ 2018-10-26 10:19 吴大哥 阅读(763) 评论(0) 推荐(0) 编辑
摘要: lib stwe.jar 同目录 阅读全文
posted @ 2018-09-14 15:47 吴大哥 阅读(105) 评论(0) 推荐(0) 编辑
摘要: setInterval(function(),时间)定时重复发送请求 阅读全文
posted @ 2018-08-02 16:23 吴大哥 阅读(119) 评论(0) 推荐(0) 编辑
摘要: var check = [];//定义一个空数组 $("input[name='category']:checked").each(function(i){//把所有被选中的复选框的值存入数组 check[i] =$(this).val(); }); $.ajax({ type : "post", 阅读全文
posted @ 2018-08-02 16:18 吴大哥 阅读(2893) 评论(0) 推荐(0) 编辑
摘要: package com.cxwlw.zhcs.controller.api;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework. 阅读全文
posted @ 2018-07-06 16:24 吴大哥 阅读(834) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-19 14:28 吴大哥 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 把spring-boot项目按照平常的web项目一样发布到tomcat容器下 一、修改打包形式 在pom.xml里设置 <packaging>war</packaging> 二、移除嵌入式tomcat插件 在pom.xml里找到spring-boot-starter-web依赖节点,在其中添加如下代 阅读全文
posted @ 2018-06-09 11:18 吴大哥 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 函数config() 内容 BEGIN DECLARE t_error INT DEFAULT 0; -- 事务执行错误标志 DECLARE CONTINUE HANDLER FOR SQLEXCEPTION SET t_error=1; START TRANSACTION; -- 断闸命令 ins 阅读全文
posted @ 2018-06-01 15:43 吴大哥 阅读(207) 评论(0) 推荐(0) 编辑