<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[explorers的专栏]]></title><description><![CDATA[路漫漫其修远兮，吾将上下而求索]]></description><link>https://blog.csdn.net/explorers</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; explorers]]></copyright><item><title><![CDATA[tricky grails]]></title><link>https://blog.csdn.net/explorers/article/details/83370969</link><guid>https://blog.csdn.net/explorers/article/details/83370969</guid><author>explorers</author><pubDate>Sat, 11 Apr 2009 12:13:18 +0800</pubDate><description><![CDATA[以下内容皆针对grails1.0.3，其他版本是否有问题待验证。

1) bug:

url解析问题:
   /show/xxx.yyy 这样的url解析之后，params.id 值为 xxx而不是 xxx.yyy。
暂时以 /show?id=xxx.yy 这样的方式来解决。

应该是 org.codehaus.groovy.grails.web.mapping.filter.Ur...]]></description><category></category></item><item><title><![CDATA[用 groovy post 数据到页面]]></title><link>https://blog.csdn.net/explorers/article/details/2312734</link><guid>https://blog.csdn.net/explorers/article/details/2312734</guid><author>explorers</author><pubDate>Mon, 21 Apr 2008 17:22:00 +0800</pubDate><description><![CDATA[下面的代码修改url， vars之后可以直接运行def encode = utf8;def url = ... //TODO: change here!def vars = [uid, 12345, name:myname] //TODO: change here!def en = {k,v->   return URLEncoder.encode(k, encode) + "="]]></description><category></category></item><item><title><![CDATA[erlang 资源]]></title><link>https://blog.csdn.net/explorers/article/details/1791604</link><guid>https://blog.csdn.net/explorers/article/details/1791604</guid><author>explorers</author><pubDate>Wed, 19 Sep 2007 16:39:00 +0800</pubDate><description><![CDATA[Erlang入门:          http://www.erlang.org/doc/getting_started/part_frame.htmlErlang官方站点:  http://www.erlang.org/doc/index.htmlErlang中文站点:  http://www.erlang-china.org/Erlang中文讨论组: http://groups.google.]]></description><category></category></item><item><title><![CDATA[让hibernate synchronizer生成的pojo带 toString]]></title><link>https://blog.csdn.net/explorers/article/details/1744904</link><guid>https://blog.csdn.net/explorers/article/details/1744904</guid><author>explorers</author><pubDate>Wed, 15 Aug 2007 13:43:00 +0800</pubDate><description><![CDATA[ 在使用hibernate synchronizer的时候发现如果生成的pojo 能够有toString的实现会给开发、调试带来很大的方便， 参考下图把toString模板改成下面的内容即可：     public String toString () {        return org.apache.commons.lang.builder.ToStringBuilder.ref]]></description><category></category></item><item><title><![CDATA[Ruby相关的一些资源]]></title><link>https://blog.csdn.net/explorers/article/details/1742728</link><guid>https://blog.csdn.net/explorers/article/details/1742728</guid><author>explorers</author><pubDate>Tue, 14 Aug 2007 15:09:00 +0800</pubDate><description><![CDATA[ － Ruby的老家：www.ruby-lang.org － Ruby仓库：www.rubyforge.org              raa.ruby-lang.org － Ruby文档：www.ruby-doc.org － Rails老家：www.rubyonrails.com － 新闻组：http://groups.google.com/group/comp.lang.ruby/topic]]></description><category></category></item><item><title><![CDATA[Class.getResourceAsStream 和 ClassLoader.getResourceAsStream]]></title><link>https://blog.csdn.net/explorers/article/details/1722740</link><guid>https://blog.csdn.net/explorers/article/details/1722740</guid><author>explorers</author><pubDate>Thu, 02 Aug 2007 16:10:00 +0800</pubDate><description><![CDATA[这两个方法还是略有区别的， 以前一直不加以区分，直到今天发现要写这样的代码的时候运行错误， 才把这个问题澄清了一下。基本上，两个都可以用于从 classpath 里面进行资源读取，  classpath包含classpath中的路径和classpath中的jar。  两个方法的区别是资源的定义不同， 一个主要用于相对与一个object取资源，而另一个用于取相对于classpath的资源，用的是绝对]]></description><category></category></item><item><title><![CDATA[InvocationHandler 的异常处理]]></title><link>https://blog.csdn.net/explorers/article/details/1711932</link><guid>https://blog.csdn.net/explorers/article/details/1711932</guid><author>explorers</author><pubDate>Fri, 27 Jul 2007 19:01:00 +0800</pubDate><description><![CDATA[最近发现个问题， 客户端请求返回的错误码不对， 仔细看了代码，程序里面是通过异常捕获来获得错误码的。 被调用的业务方法抛出异常，结果在实际捕获的时候，不是原来的异常了。怎么回事呢？ 在仔细一下，原来是 log proxy 实现的不好导致的问题。 注意下面的代码中的 catch部分， 只有这样处理，才能保证会抛出被调用的方法抛出的异常，因为被调用的方法不在throws列表中，这时会被转换成另一个异常]]></description><category></category></item><item><title><![CDATA[jdk6.0 jconsole无法看到本地进程]]></title><link>https://blog.csdn.net/explorers/article/details/1537875</link><guid>https://blog.csdn.net/explorers/article/details/1537875</guid><author>explorers</author><pubDate>Thu, 22 Mar 2007 18:49:00 +0800</pubDate><description><![CDATA[装了jdk6.0，再使用jconsole时，竟然无法找到本地进程，忍受了些日子，最近受不了了， 搜索了一下，找到了解决方案：TMP的目录下，有一个目录   hsperfdata_ ， 是登录的用户名， 在这个目录下面创建文件试试看，如果不能创建文件，就是这个问题了， 把这个目录删除重新创建即可。原理：每个java进程启动的时候在这个目录创建一个文件， jconsole/jps等工具都是从此目录来获]]></description><category></category></item><item><title><![CDATA[Java1.5泛型指南中文版(Java1.5 Generic Tutorial)]]></title><link>https://blog.csdn.net/explorers/article/details/454837</link><guid>https://blog.csdn.net/explorers/article/details/454837</guid><author>explorers</author><pubDate>Mon, 15 Aug 2005 11:22:00 +0800</pubDate><description><![CDATA[ Java1.5泛型指南中文版(Java1.5 Generic Tutorial)英文版pdf下载链接：http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf                                                 译者： chengchengji@163.com 目   ]]></description><category></category></item><item><title><![CDATA[用eclipse + wtp 开发JSP]]></title><link>https://blog.csdn.net/explorers/article/details/454769</link><guid>https://blog.csdn.net/explorers/article/details/454769</guid><author>explorers</author><pubDate>Mon, 15 Aug 2005 10:22:00 +0800</pubDate><description><![CDATA[ 用eclipse + wtp 开发JSP    现在eclipse越来越好用了，随着sun jdk5.0的补丁4的推出，eclipse3.1也正式发布，二者结合，速度比以前快了很多。而wtp0.7 m5版本放出也有了一段时间，这个月月底可能wtp0.7会有release了。现在二者都基本成熟，用eclipse+wtp开发JSP是很方便的，但是关于wtp插件的配置和使用方面的文章却不多。很多人]]></description><category></category></item></channel></rss>