首页

搜索结果

"tag:"java""

<<上篇 ... 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 下篇>>

标题及摘要 日期/时间
241
How To Get Started Using JNA - 如何用Java调用本地dll或so库
Java Native Access (JNA) is A small set of Java language utilities and conventions for dynamically accessing native libraries (for example, .dll's on Windows or .so's on Solaris) on any supported platform without writing anything but Java code—no JN...
2007-6-18
21:35:17
242
Java性能-Java performance
这是一篇讲述java性能的blog,内容包括,提高I/O性能,防止内存泄露,提高Java应用性能
2007-6-17
11:31:24
243
用Spring和EHCache缓存中间Service的方法结果集
之前知道,在J2ee应用里可以用oscache缓存jsp页面,也可以用ehcache等作为hibernate等ORM缓存方案,为j2ee应用提高性能,减少数据库负荷压力。 而这篇文档Caching the result of methods using Spring and EHCache ,描述了用ehcache和spring ioc来缓存中间Service方法的结果集。这是很妙的想法。
2007-6-16
21:33:43
244
我收藏的链接(8)
技巧:Java垃圾收集器使用小诀窍·网易学院·教程 Solving common Java EE performance problems - Java World Jive Software: Java Garbage Collection Tuning Performance Tuning Garbage Collection in Java Fine-tuning Java garbage collection performance Java 2 引用类使用指南 M...
2007-6-7
15:02:48
245
Java垃圾收集调优-Java Garbage Collection Tuning
Introduction Correctly tuning Java garbage collection is important for high traffic web applications. This document provides some general guidelines as well as links to additional resources.
2007-6-7
14:58:50
246
顶级java/j2ee开发者应具有什么素质?
Javalobby has promoted "What traits do top notch Java/J2EE developers have?" to their main page. While it's geared to drive traffic towards an education/marketing site (offering books on J2EE Q&As), the question is worth asking: what makes J...
2007-6-6
9:42:13
247
NekoHTML FAQ
Why are the DOM element names always uppercase? Why do I get a hierarchy request error using DOM? How do I add filters before the tag balancer? How do I parse HTML document fragments? How can I get the location of document information...
2007-6-4
18:56:58
248
一个使用NekoHTML解析html的例子
NekoHTML 可以解析、修整和净化html文档,可以自动关闭标记,修补一些常见的错误,也可以用NekoHTML从html文档里抽取文本。 NekoHTML is a simple HTML scanner and tag balancer that enables application programmers to parse HTML documents and access the information using standard XML interfaces. The parser can ...
2007-6-4
18:54:35
249
JAVA中高精度Double运算
Java中的简单浮点数类型float和double不能够进行运算。不光是Java,在其它很多编程语言中也有这样的问题。在大多数情况下,计算的结果是准确的,但是多试几次(可以做一个循环)就可以试出类似上面的错误。现在终于理解为什么要有BCD码了。
2007-6-2
19:50:45
250
J2EE中的死锁问题
数据库死锁,跨资源死锁
2007-6-2
13:10:53
251
Java堆栈跟踪介绍(An Introduction to Java Stack Traces)
Java堆栈跟踪介绍(An Introduction to Java Stack Traces)
2007-5-30
11:19:58
252
分析WebSphere产生的javacore文件判断问题
Problem determination for javacore files from WebSphere Application Server
2007-5-28
17:05:06
253
如何用Java客户端/applet提交表单
用HttpURLConnection post form data,传递form field域
2007-5-28
10:58:21
254
如何用Java客户端/applet通过HTTP POST上传文件
How do I upload a file using a Java client (not a browser) and HTTP POST?
2007-5-27
9:38:35
255
十大Java EE性能问题
Xebia是一个专注于企业Java架构、中间件、门户、集成专业顾问厂商,Joseph Ottinger 在TSS发表了十大Java EE性能问题: For the last two and a half months, Vincent Partington has been blogging about the top ten Enterprise Java Application Performance Problems. The list: #10 - Excessive logging ...
2007-5-2
15:11:27
256
一个在Spring里使用quartz完成时序调度工作的例子
Spring提供了支持时序调度的整合类。现在, Spring支持内置于1.3版本以来的JDK中的Timer和Quartz Scheduler(http://www.quartzscheduler.org)。 两个时序调度器通过FactoryBean建立,保持着可选的对Timers或者Triggers的引用。更进一步的, 对于Quartz Scheduler和Timer两者存在一个方便的类允许你调用目标对象(类似于通常的MethodInvokingFactoryBeans)上的某个方法。
2007-4-29
11:13:49
257
Commons Logging自动发现日志工具过程和Log4j的初始化
Jakarta Commons Logging (JCL)提供了统一的日志接口,它目的是成为轻量级和不依赖其他日志工具的抽象层。它把一个简单的日志抽象提供给二次开发者,它允许用户插入一个指定的日志实现。 JCL为其他日志工具提供了一个代理日志实现,包括Log4J,Avalon LogKit,JDK 1.4,以及JDK1.4日志API的实现。这个接口类似的映射到Log4j和LogKit。 下面是Commons Logging (JCL)自动地发现选择一个日志实现工具的过程:
2007-4-29
10:49:13
258
Hibernate optimistic locking exception
HibernateOptimisticLockingFailureException,The error occurs because at least 2 transactions are working on the same record(s). If a record is read by 2 transactions, and if the record is saved by one transaction first, and then by the second one, an optim...
2007-4-26
13:19:57
259
使用Jmeter进行需登录的Web页面性能压力测试
使用Jmeter进行需登录的Web页面性能压力测试,首先必须解决登录的问题。要登录,应该模拟登录过程,即传递用户名和密码请求登录处理URL进行登录,然后让Jmeter维护会话Session,在同一个会话Session里,继续请求目标测试页面,进行测试。在Jmeter里有两种机制可以维护Session...
2007-4-19
13:08:56
260
JMeter FAQ
Apache的压力性能测试工具Jmeter常见问题
2007-4-19
12:44:47

<<上篇 ... 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 下篇>>