上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页
摘要: 先说下我的需求 1,可以记录日记在我们的java开发项目周期中; 2,很简单即可输出日志; 3,每天按照时间将不同的日志输出到不同的文件中,每天输出日志到一个带有当前时间戳的文件中; 4,可以修改当前输出日志的文件名,文件名后缀是当前的日期,而不需要等待log4j的项目到第二天这个文件名才能生成带有时间戳的文件; 6,按不同的日志等级输出日志到不同的文件中,例如error文件中... 阅读全文
posted @ 2013-07-14 10:45 高级测试开发网 阅读(17800) 评论(1) 推荐(0) 编辑
摘要: 自己开发的一个结合QTP 和Hudson的一个框架》| Step Name | Description | Expected Result | Create host instance from template | Choose a template, instantiate the system from template.If creating a new server from OS iso image, see next step. ... 阅读全文
posted @ 2012-11-01 16:25 高级测试开发网 阅读(412) 评论(0) 推荐(0) 编辑
摘要: | Step Name | Description... 阅读全文
posted @ 2012-11-01 12:58 高级测试开发网 阅读(487) 评论(0) 推荐(0) 编辑
摘要: scm-sync-configuration - Fails with E200015: authentication cancelledI was running Hudson 1.396 and using scm-sync-configuration without any problems.I moved to Hudson 2.2.1 with a fresh install and configuration of Hudson. I have my jobs building correctly, but I cannot get scm-sync-configuration t 阅读全文
posted @ 2012-08-18 20:16 高级测试开发网 阅读(6000) 评论(0) 推荐(0) 编辑
摘要: 参考地址:http://blog.csdn.net/hittata/article/details/4744653 阅读全文
posted @ 2012-07-08 17:18 高级测试开发网 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 参考网址:http://developer.51cto.com/art/201111/304118.htm 原文地址;http://www.cnblogs.com/fromweibo/archive/2011/11/18/2254705.html 阅读全文
posted @ 2012-07-08 15:12 高级测试开发网 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 输入了对应的SVN的仓库checkout的路径后,采用用户名和密码进行验证后,弹出下面的错误:Passing user name bish and password you enteredAuthentication was not acknowledged.FAILED: svn: Operation cancelledorg.tmatesoft.svn.core.SVNCancelExcep... 阅读全文
posted @ 2012-07-08 14:06 高级测试开发网 阅读(2419) 评论(0) 推荐(0) 编辑
摘要: 先记下参考文档:http://cxr1217.iteye.com/blog/730085 阅读全文
posted @ 2012-07-06 16:19 高级测试开发网 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 参考地址:http://xly3000.wordpress.com/2012/04/01/myeclipse10%E4%BB%857%E6%AD%A5%E6%88%90%E5%8A%9F%E7%A0%B4%E8%A7%A3%E6%BF%80%E6%B4%BB%E5%9B%BE%E8%A7%A3/ 阅读全文
posted @ 2012-07-06 12:53 高级测试开发网 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 参考命令地址:http://blog.csdn.net/sailershen/article/details/7195444http://blog.sina.com.cn/s/blog_5fb265c70100w4d0.html 阅读全文
posted @ 2012-07-05 11:12 高级测试开发网 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 参考文档:http://www.taobaotest.com/blogs/qa?bid=5827参考文档2:http://limingnihao.iteye.com/blog/781878 (结果集探讨)通过iBatis的queryForMap方法比较resultClass与resultMap:http://blog.csdn.net/zouxuhong/article/details/7163682如果使用resultMap则不可以使用as语句了:http://wunda.iteye.com/blog/653329mybatis的映射原理:http://learnworld.iteye.co 阅读全文
posted @ 2012-06-21 16:18 高级测试开发网 阅读(2639) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/afgasdg/article/details/7392367 阅读全文
posted @ 2012-06-21 14:34 高级测试开发网 阅读(177) 评论(0) 推荐(0) 编辑
摘要: http://chenxy.blog.51cto.com/729966/728112,参考文档二:http://topic.csdn.net/u/20080508/10/4b56808e-ab77-4d6e-8e75-47f281e8e33c.html例如下面的sql语句:单个字段去掉重复:select pp.p_product_id, pp.product_name, pp.product_level_name, ud.depart_path_name, pp.recommand_level, pp.product_type, ... 阅读全文
posted @ 2012-06-20 15:54 高级测试开发网 阅读(1205) 评论(0) 推荐(0) 编辑
摘要: 两种方法,一个是在脚本的主控模块Action0中进行修改脚本的运行方式,打开对应的该test中的Action0中的Script.mts文件,修改其中需要运行的指定action。 Script.mts文件内容一般如下:Call RunAction("action1", oneIteration)Call RunAction("action2", oneIteration)Call RunAction... 阅读全文
posted @ 2012-06-20 09:17 高级测试开发网 阅读(2626) 评论(0) 推荐(0) 编辑
摘要: 一种直接采用函数进行模糊查询,直接在映射文件中书写对应的like语句。例如:select * from u_tree ut where ut.node_name like concat(concat(‘%',#{text}),’%')第二种方式:使用 ${...} 代替 #{...}SELECT * FROM tableName WHERE name LIKE '%${text}%';第三种方式:3. 程序中拼接Java// or String searchText = "%" + text + "%";String se 阅读全文
posted @ 2012-06-19 11:30 高级测试开发网 阅读(921) 评论(0) 推荐(0) 编辑
摘要: 最新可用的源码更新如下(主要修改了对应的EXCEL的操作,修改为了单例模式进行操作EXCEL对象,使得操作excel更加的快速,而且有效);源码如下:(本框架本博客版权所有,未经本人许可不得用于其他商业用途,转载请注明出处.谢谢)'*******************************************************************************************'功能:新建一个excel文件'参数:无'返回值:创建一个excelapp的进程'作者:judd'******************** 阅读全文
posted @ 2012-06-15 18:38 高级测试开发网 阅读(710) 评论(0) 推荐(0) 编辑
摘要: 正则表达式的书写方式应该是对应的子串+“.*”注意,其中的前面的点必需要添加。否则,该正则表达式不能识别 阅读全文
posted @ 2012-06-15 15:39 高级测试开发网 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 在使用场景恢复时候,发现有时候不能正确的使用,明明经使用了场景恢复,但是运行的时候没有起作用。发现是自己的设置问题:如下,我再resource中设置了对应的场景恢复使用。但是运行的时候发现却不起作用,后来发现原来是需要在File-->settings-->recovery中设置对应的响应时机。比如说是在出错的时候运行对应的场景恢复呢,还是在该test中的每一步中都进行场景恢复的加载呢。设置如下:红色区域,就是对应的响应的时机。设置一下即可。 阅读全文
posted @ 2012-06-15 09:17 高级测试开发网 阅读(823) 评论(0) 推荐(0) 编辑
摘要: 参考链接地址:http://wwww.iteye.com/blog/1235996 阅读全文
posted @ 2012-06-11 21:06 高级测试开发网 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 参考地址如下:http://haohaoxuexi.iteye.com/blog/1333271 阅读全文
posted @ 2012-06-11 20:57 高级测试开发网 阅读(212) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页
了解开发资源最新动态:https://seniortesting.club