<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/BlueDavy" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/BlueDavy" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 11 Jul 2008 10:13:00 GMT</lastBuildDate><title>Programmer's Life</title><description>About Java、System Design and Analysis、Portal、OS etc..</description><link>http://blog.csdn.net/BlueDavy/</link><item><title>【译】构建可扩展的Java EE应用（二）</title><link>http://blog.csdn.net/BlueDavy/archive/2008/07/11/2637796.aspx</link><wfw:comment>comments/2637796.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2637796.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2637796</trackback:ping><description>当并发用户数明显的开始增长，你可能会不满意一台机器所能提供的性能，或者由于单个JVM实例gc的限制，你没法扩展你的java应用，在这样的情况下你可以做的另外的选择是在多个JVM实例或多台服务器上运行你的系统，我们把这种方法称为水平扩展。&lt;img src =&quot;aggbug/2637796.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 11 Jul 2008 18:13:00 +0800</pubDate><author>jerry</author><comments>http://blog.csdn.net/BlueDavy/archive/2008/07/11/2637796.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/BlueDavy/archive/2008/07/11/2637796.aspx</guid><dc:creator>jerry</dc:creator></item><item><title>【译】构建可扩展的Java EE应用（一）</title><link>http://blog.csdn.net/BlueDavy/archive/2008/07/08/2623594.aspx</link><wfw:comment>comments/2623594.aspx</wfw:comment><slash:comments>4</slash:comments><wfw:commentRss>comments/commentRss/2623594.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2623594</trackback:ping><description>在这篇文章中，Wang Yu基于他本身在实验室项目的经验来展示如何构建可扩展的java应用，同时，基于一些在可扩展性上做的比较失败的项目给读者带来构建可扩展java应用的实践、理论、算法、框架和经验。&lt;img src =&quot;aggbug/2623594.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 08 Jul 2008 17:58:00 +0800</pubDate><author>jerry</author><comments>http://blog.csdn.net/BlueDavy/archive/2008/07/08/2623594.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/BlueDavy/archive/2008/07/08/2623594.aspx</guid><dc:creator>jerry</dc:creator></item><item><title>JSP的Request session的有效时间应合理设置</title><link>http://blog.csdn.net/BlueDavy/archive/2008/07/04/2610434.aspx</link><wfw:comment>comments/2610434.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2610434.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2610434</trackback:ping><description>之前写了个简单的jsp做压力测试，没想到出现的一个问题是当压力比较大的情况，运行比较久的话会出现一个现象，就是jvm的内存几乎被耗尽，用jprofiler查看会发现是有一个ConcurrentHashMap对象的内存一直在增长，而且没有释放的迹象。&lt;img src =&quot;aggbug/2610434.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 04 Jul 2008 17:46:00 +0800</pubDate><author>jerry</author><comments>http://blog.csdn.net/BlueDavy/archive/2008/07/04/2610434.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/BlueDavy/archive/2008/07/04/2610434.aspx</guid><dc:creator>jerry</dc:creator></item><item><title>JBoss Remoting 2.2.2里的一个Bug</title><link>http://blog.csdn.net/BlueDavy/archive/2008/07/01/2601078.aspx</link><wfw:comment>comments/2601078.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2601078.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2601078</trackback:ping><description>在JBoss Remoting 2.2.2中存在这么一个bug，如果刚好客户端的timeout比服务器端处理时间短的话，就会出现客户端连接池中的连接被无故用掉一个的状况，而且是没法回收的，最终就会导致很快客户端的连接池被占满的现象，在分析JBoss Remoting 2.2.2的代码后发现了问题的所在，同时查看了下JBoss Remoting 2.4的代码，发现在2.4中此bug已被修复。&lt;img src =&quot;aggbug/2601078.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 01 Jul 2008 18:40:00 +0800</pubDate><author>jerry</author><comments>http://blog.csdn.net/BlueDavy/archive/2008/07/01/2601078.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/BlueDavy/archive/2008/07/01/2601078.aspx</guid><dc:creator>jerry</dc:creator></item><item><title>Java并发编程基础知识片段（一）</title><link>http://blog.csdn.net/BlueDavy/archive/2008/06/20/2568172.aspx</link><wfw:comment>comments/2568172.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2568172.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2568172</trackback:ping><description>Java 5并发包的加入，给Java的并发程序的开发带来了很多的好处，在此列举一些并发编程中应该掌握的一些基础知识片断，这些片断基本都是由一些问题组成，在片段中没有直接写出答案，由于可用来解决这些片段的方法还是很多的，因此只是提到了解决问题可选方案的关键字。&lt;img src =&quot;aggbug/2568172.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 20 Jun 2008 18:00:00 +0800</pubDate><author>jerry</author><comments>http://blog.csdn.net/BlueDavy/archive/2008/06/20/2568172.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/BlueDavy/archive/2008/06/20/2568172.aspx</guid><dc:creator>jerry</dc:creator></item><item><title>何谓精通</title><link>http://blog.csdn.net/BlueDavy/archive/2008/06/13/2543548.aspx</link><wfw:comment>comments/2543548.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2543548.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2543548</trackback:ping><description>精通这个词估计是在简历中最常见到的词了，简历上通常都充斥着精通struts2、精通java、精通hibernate等等词语，近来经常看些比较底层的书，越来越体会到精通这个词应该具备的份量了，也越来越理解以前朋友和我说的在国外工程和研究是分的很清楚的原因了，在这篇blog里来扯扯自己对精通这个词的看法。&lt;img src =&quot;aggbug/2543548.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 13 Jun 2008 21:59:00 +0800</pubDate><author>jerry</author><comments>http://blog.csdn.net/BlueDavy/archive/2008/06/13/2543548.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/BlueDavy/archive/2008/06/13/2543548.aspx</guid><dc:creator>jerry</dc:creator></item><item><title>把窝迁到blogjava上去了</title><link>http://blog.csdn.net/BlueDavy/archive/2005/05/19/376610.aspx</link><wfw:comment>comments/376610.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/376610.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=376610</trackback:ping><description>窝迁到了www.blogjava.net/bluedavy&lt;img src =&quot;aggbug/376610.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 20 May 2005 06:55:00 +0800</pubDate><author>jerry</author><comments>http://blog.csdn.net/BlueDavy/archive/2005/05/19/376610.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/BlueDavy/archive/2005/05/19/376610.aspx</guid><dc:creator>jerry</dc:creator></item></channel></rss>