我就在这里
发布时间:2014-11-29 19:56:22
如果我们在Eclipse RCP程序中添加TaskList View,用来管理Task或者TODO项,如下代码:PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage() .showView("org.eclipse.ui.views.TaskList");我们发现,创建的Task,在重启之后无法保存,而在Eclipse IDE.........【阅读全文】
发布时间:2014-11-26 21:51:40
There is an example of creating linked resources in code.IProject project = workspace.getProject("Project");//assume this exists IFolder link = project.getFolder("Link"); IPath location = new Path("C:\TEMP\folder"); &nb.........【阅读全文】
发布时间:2014-11-26 21:45:12
In Eclipse, there are 2 closely related core technologies that support development of Graphical User Interface (GUI) applications. The Standard Widget Toolkit (SWT) provides the fundamental building blocks. The JFace framework provides a set of patterns and component abstractions. Actio.........【阅读全文】
发布时间:2014-11-24 20:49:30
在设置jboss的参数中,maxThreads(最大线程数)和acceptCount(最大等待线程数)是两个非常重要的指标,直接影响到程序的QPS。本文讲解jboss连接的运行原理,以及如何设置这两个参数。 最佳线程数: 在做压力测试时,刚开始,随着并发量的增加,QPS也会随之增大,但当并发量.........【阅读全文】