摘要: 在加载的引用的JS文件后面加上时间。例如: 来自为知笔记(Wiz) 阅读全文
posted @ 2017-07-03 17:41 nobug的世界 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1、JSP页面: <!--WizRtf2Html Charset=0 --><%@page import="com.wondersgroup.esf.base.util.ApplicationContextUtil"%> <%@ page language="java" pageEncoding=" 阅读全文
posted @ 2017-07-03 17:40 nobug的世界 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 见附件来自为知笔记(Wiz)附件列表 阅读全文
posted @ 2017-07-03 17:37 nobug的世界 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 1、配置文件,见附件2、web.xml配置: CXFServlet org.apache.cxf.transport.servlet.CXFServlet 3 CXFServlet /ws/* 3、注解的作用:(详情百度)@Consumes对应http头文件accept属性,表示希望接收... 阅读全文
posted @ 2017-07-03 17:36 nobug的世界 阅读(2733) 评论(0) 推荐(0) 编辑
摘要: Test.java为读取本地xml文件post方式提交。来自为知笔记(Wiz)附件列表 阅读全文
posted @ 2017-07-03 17:35 nobug的世界 阅读(166) 评论(0) 推荐(0) 编辑
摘要: String folder = "/nasapp/datamerger/xmls/ " ; File file = new File(folder); if(!file.exists()){ file.mkdir(); } File[] files = file.listFiles(); for(File... 阅读全文
posted @ 2017-07-03 17:35 nobug的世界 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 思路:indexOf()函数大于0来判断。boolean hasWhere = false;//命令字段是否已包含了where子句if(cmd.indexOf("where")>0||cmd.indexOf("WHERE")>0){ hasWhere=true; } 来自为知笔记(Wiz) 阅读全文
posted @ 2017-07-03 17:32 nobug的世界 阅读(238) 评论(0) 推荐(0) 编辑
摘要: JS部分: var qcloud={}; $('[_t_nav]').hover(function(){ var _nav = $(this).attr('_t_nav'); clearTimeout( qcloud[ _nav + '_timer' ] ); qcloud[ _nav + '_ti 阅读全文
posted @ 2017-07-03 17:31 nobug的世界 阅读(571) 评论(0) 推荐(0) 编辑
摘要: CSS文件:.header{ width:100%; height:68px; background: url(./images/top_bg.png) center center repeat-x;}.header_content{ width:1000px; height:68px; margin:0 auto; position:relative; }.logo{ width:340px; ... 阅读全文
posted @ 2017-07-03 17:24 nobug的世界 阅读(288) 评论(0) 推荐(0) 编辑
摘要: JS方法:/**批量接收*/function checkboxAll(){ var array=""; $('input[id^=checkbox_all]').each(function(){ if(this.checked){ array=array+$(this).val()+","; } }); if(array!=... 阅读全文
posted @ 2017-07-03 17:23 nobug的世界 阅读(1347) 评论(0) 推荐(0) 编辑