摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>MULTIPLE SELECT</title> <script src="https://cdn.bootcss.com/jquery/2.1.4/jquery.min.js">< 阅读全文
posted @ 2020-12-09 16:21 敲代码的机车Boy 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 1.使用LinkedHashSet删除arraylist中的重复数据 LinkedHashSet是在一个ArrayList删除重复数据的最佳方法。LinkedHashSet在内部完成两件事: 删除重复数据 保持添加到其中的数据的顺序 Java示例使用LinkedHashSet删除arraylist中 阅读全文
posted @ 2020-12-03 09:06 敲代码的机车Boy 阅读(514) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-12-02 13:52 敲代码的机车Boy 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-11-26 17:58 敲代码的机车Boy 阅读(0) 评论(0) 推荐(0) 编辑
摘要: select sid, a.BLOCKING_SESSION from v$session a where blocking_session is not null 阅读全文
posted @ 2020-11-09 14:52 敲代码的机车Boy 阅读(143) 评论(0) 推荐(0) 编辑
摘要: package com.it.test; import java.io.IOException; import java.util.Properties; import org.springframework.core.io.support.PropertiesLoaderUtils; /** * 阅读全文
posted @ 2020-11-04 16:31 敲代码的机车Boy 阅读(267) 评论(0) 推荐(0) 编辑
摘要: success: function (data) { var result = typeof data == 'string' ? JSON.parse(data) : data; } 阅读全文
posted @ 2020-08-17 16:07 敲代码的机车Boy 阅读(104) 评论(0) 推荐(0) 编辑
摘要: ps aux|grep xxx.jar --进程ID查询nohup java -jar XXX.jar & --启动Jar程序tail -100f nohup.out --查看jar程序日志 losf -i :prot --端口查询进程IDkill -9 PID --杀死进程 阅读全文
posted @ 2020-07-23 14:37 敲代码的机车Boy 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 1.工具类FileUtil.java package com.h3c.portal.business.seconddev.util; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServlet 阅读全文
posted @ 2020-07-14 09:08 敲代码的机车Boy 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1.找到本地maven仓库位置如:XX:\apache-maven-3.6.1\repository\org\apache\maven\plugins 2.情况plugins文件夹下面所有文件。 3.再次创建maven项目。 阅读全文
posted @ 2020-07-09 11:08 敲代码的机车Boy 阅读(356) 评论(0) 推荐(0) 编辑