首页

搜索结果

"category:/java"

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

标题及摘要 日期/时间
241
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
242
顶级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
243
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
244
一个使用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
245
JAVA中高精度Double运算
Java中的简单浮点数类型float和double不能够进行运算。不光是Java,在其它很多编程语言中也有这样的问题。在大多数情况下,计算的结果是准确的,但是多试几次(可以做一个循环)就可以试出类似上面的错误。现在终于理解为什么要有BCD码了。
2007-6-2
19:50:45
246
J2EE中的死锁问题
数据库死锁,跨资源死锁
2007-6-2
13:10:53
247
Java堆栈跟踪介绍(An Introduction to Java Stack Traces)
Java堆栈跟踪介绍(An Introduction to Java Stack Traces)
2007-5-30
11:19:58
248
分析WebSphere产生的javacore文件判断问题
Problem determination for javacore files from WebSphere Application Server
2007-5-28
17:05:06
249
如何用Java客户端/applet提交表单
用HttpURLConnection post form data,传递form field域
2007-5-28
10:58:21
250
如何用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
251
十大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
252
一个在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
253
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
254
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
255
使用Jmeter进行需登录的Web页面性能压力测试
使用Jmeter进行需登录的Web页面性能压力测试,首先必须解决登录的问题。要登录,应该模拟登录过程,即传递用户名和密码请求登录处理URL进行登录,然后让Jmeter维护会话Session,在同一个会话Session里,继续请求目标测试页面,进行测试。在Jmeter里有两种机制可以维护Session...
2007-4-19
13:08:56
256
JMeter FAQ
Apache的压力性能测试工具Jmeter常见问题
2007-4-19
12:44:47
257
log4j在集群cluster环境下运行
log4j在集群cluster环境下运行,需要将log4j.properties文件脱离应用,将每个集群节点分别指定对应的log4j.properties。在启动服务器JVM的时候加入参数: -Dlog4j.configuration=file:/home/bea/log4j1.properties 这样可以在一台物理服务器机器上配置多个集群服务器实例。
2007-4-17
11:12:58
258
how can I use Acegi Security with WebLogic or websphere?
如何在Weblogic或者Websphere里使用Acegi Security
2007-4-14
11:01:24
259
Java和时区(Time zones and Java)
Java应用程序的时区,默认地取user.timezone系统属性,如果没有定义,那么结合user.country和java.home系统属性取一个时区ID,如果不成功则用GMT作为缺省时区
2007-4-11
11:11:57
260
Thread Dump 和Java应用诊断
用下列方法可以产生Thread Dump信息: 1,Solaris OS ctrl-’\’ (Control-Backslash) kill -QUIT pid 2, HP-UN/UNIX/Linux Kill -3 PID PID通过下面方法获取 ps -efHl | grep 'java' **. ** 3,Windows 直接对MSDOS窗口的程序按Ctrl-break
2007-4-10
20:25:38

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