摘要: 出处: http://www.cnblogs.com/CheeseZH/ 阅读全文
posted @ 2016-08-31 15:06 zipon 阅读(4809) 评论(0) 推荐(0) 编辑
摘要: --查询Oracle正在执行的sql语句及执行该语句的用户 [sql] view plain copy SELECT b.sid oracleID, b.username 登录Oracle用户名, b.serial#, spid 操作系统ID, paddr, sql_text 正在执行的SQL, b 阅读全文
posted @ 2016-08-29 14:35 zipon 阅读(537) 评论(0) 推荐(0) 编辑
摘要: [html] view plain copy print?在CODE上查看代码片派生到我的代码片 {{x.id}}---{{x.name}} 阅读全文
posted @ 2016-08-28 16:09 zipon 阅读(1885) 评论(0) 推荐(0) 编辑
摘要: 已知两种方法。一种是通过httpclient实现(貌似很简单,以后看一下),一种是以下方法: Client实现: 阅读全文
posted @ 2016-08-23 14:47 zipon 阅读(1685) 评论(1) 推荐(0) 编辑
摘要: package test; import java.sql.*; import java.text.SimpleDateFormat; import java.util.*; import java.util.Date; public class JDBCTest { public static void main(String[] args) { // 驱动程序名 String... 阅读全文
posted @ 2016-08-16 18:06 zipon 阅读(1323) 评论(0) 推荐(0) 编辑
摘要: applicationContext.xml 文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www. 阅读全文
posted @ 2016-08-15 17:24 zipon 阅读(34121) 评论(1) 推荐(3) 编辑
摘要: 命令行执行: java -Dtestng.test.classpath="c:/build;c:/java/classes;" org.testng.TestNG testng.xml 阅读全文
posted @ 2016-08-15 16:54 zipon 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 可以把applicationContext.xml放到/WEB-INF/classes目录下使用先说:ClassPathXmlApplicationContext 这个类,默认获取的是WEB-INF/classes/下的路径,也就是在myeclipse的src下的路径,所以用这个是获取不到WEB-I 阅读全文
posted @ 2016-08-13 05:00 zipon 阅读(6246) 评论(0) 推荐(0) 编辑
摘要: 2022-09-14更新 https://chenjunan.top/detail/Detail?id=13 激活步骤 https://chenjunan.top/img/activate/idea-new.txt 激活码 无限试用方式 第①步、在Settings/Preferences... -> 阅读全文
posted @ 2016-08-13 02:04 zipon 阅读(1741) 评论(0) 推荐(0) 编辑
摘要: 初学Spring在用Resource rs=new ClassPathResource("applicationContext.xml");时老是遇到这个错误。后来发现用ApplicationContext ctx=new FileSystemXmlApplicationContext("WebCo 阅读全文
posted @ 2016-08-06 16:15 zipon 阅读(8348) 评论(0) 推荐(0) 编辑