`
文章列表
http://www.softwaretestinghelp.com/selenium-webdriver-selenium-tutorial-8/   Introduction to Selenium WebDriver: Earlier in this series we published tutorials which focused more onSelenium IDE and its various aspects. We introduced the tool and discussed about its features. We also constructed a ...
http://www.softwaretestinghelp.com/locate-elements-in-chrome-ie-selenium-tutorial-7/   This is tutorial #7 in our Selenium Online Training Series. If you want to check all Selenium tutorials in this series please check this page. In the previous tutorial, we tried to shed light on various types ...
http://www.softwaretestinghelp.com/css-selector-selenium-locator-selenium-tutorial-6/   In our previous Selenium tutorial we learned different types of locators. We also learned how to use: ID, ClassName, Name, Link Text, and Xpath locators for identifying web elements in a web page. In continua ...
http://www.softwaretestinghelp.com/using-selenium-xpath-and-other-locators-selenium-tutorial-5/   In the previous tutorial, we introduced you with another automation testing tool named as Firebug. We also created our own automation script manually using Firebug and its capabilities. We also learne ...
http://www.softwaretestinghelp.com/firebug-for-selenium-scripts-selenium-tutorial-4/   In the previous tutorial, we learned how to create automated test scripts using Selenium IDE and its recording feature. We also flipped through populous features of Selenium IDE. We aimed at harbingering the rea ...

Selenium Tutorial -3

http://www.softwaretestinghelp.com/selenium-ide-script-selenium-tutorial-3/   This tutorial is by far one of the most important tutorials to get a hold on Selenium IDE. This is the 3rd tutorial in our multi-part Selenium Tutorials series. We started this Selenium online Training series from this ...

Selenium Tutorial -2

http://www.softwaretestinghelp.com/selenium-ide-download-and-installation-selenium-tutorial-2/Before moving ahead, let’s take a moment to look at the agenda of this tutorial. In this tutorial, we will learn all about Selenium IDE, starting from its installation to the details about each of its feat ...
http://www.softwaretestinghelp.com/selenium-tutorial-1/   ********************************** How to start Learning Selenium? This is the best time to start learning Selenium testing by your own with the help of this free Selenium Training series. Read tutorials, practice examples at your home, ...
http://pluto418.iteye.com/blog/1179497   1.  前言 JDK提供的并发包,除了上一篇提到的用于集合外,还有线程的调度、协作、调度等等功能。上篇提到过,线程之间除了竞争关系,还有协作关系。在高并发环境下有效利用Java并发包解决线程之间协作的特殊场景。在并行计算,尤其是多线程计算的结果集合并的时候都需要用到这些并发同步器。还有一种使用场景,就是跨越多台机器(实机)的多线程进行并行运算,需要将多台机器进行结果集的汇总,合并。其原理核心也是使用这些并发协作包。 2.  FutureTask FutureTask是进行并行结果集合并的类,此类是Future ...

Servlet Async

http://www.importnew.com/8864.html   理解异步Servlet之前,让我们试着理解为什么需要它。假设我们有一个Servlet需要很多的时间来处理,类似下面的内容: LongRunningServlet.java

EHcache

http://blog.csdn.net/liuzhenwen/article/details/3983952   需要使用Spring来实现一个Cache简单的解决方案,具体需求如下:使用任意一个现有开源Cache Framework,要求可以Cache系统中Service或则DAO层的get/find等方法返回结果,如果数据更新(使用Create/update/delete方法),则刷新cache中相应的内容。 根据需求,计划使用Spring AOP + ehCache来实现这个功能,采用ehCache原因之一是Spring提供了ehCache的支持,至于为何仅仅支持ehCache而不 ...
数据库join操作的算法: 1 嵌套循环连接 nested loop join   O(n^2),两层循环 2 块嵌套循环连接 nested block loop join   O(n^2),但是省了很多IO时间, 两层循环。 3 索引嵌套循环   O(nlgn), 外层表scan,内层表用index来查 4 归并连接 merge join   O(n),但是需要连接的col事先要有序。
http://uule.iteye.com/blog/1488356   关于互斥锁: 所谓互斥锁, 指的是一次最多只能有一个线程持有的锁. 在jdk1.5之前, 我们通常使用synchronized机制控制多个线程对共享资源的访问. 而现在, Lock提供了比synchronized机制更广泛的锁定操作, Lock和synchronized机制的主要区别: synchronized机制提供了对与每个对象相关的隐式监视器锁的访问, 并强制所有锁获取和释放均要出现在一个块结构中, 当获取了多个锁时, 它们必须以相反的顺序释放. synchronized机制对锁的释放是隐式的, 只要线程运 ...
zz from : http://www.myexception.cn/web/1476438.html   Maven构建并热部署一个简单的Web Project第一步:构建Maven环境和安装m2e插件这一步就不啰嗦了,很简单。照着做就行了怎么构建Maven环境网上有很多教程,下面我随便找了一个http://blog.csdn.net/chenxuejiakaren/article/details/7938524
http://zhidao.baidu.com/link?url=TAvxFVg3q5vAgTjwMjpiAJO9rmt9SMX9EX6o-dvYBy6aQmGYK-IgbCqqHMtqbfE9MTK0Egfn0pilt1vqDCPDN_   你看下你的Eclipse中有个Server的工程,里面是他替换Tomcat相应配置文件的文件,你在这里修改试试吧
Global site tag (gtag.js) - Google Analytics