Recent Posts

Tomcat 6.0 环境变量和 Tomcat Manager Account

less than 1 minute read

有的文章上说只用 CATALINA_HOME 这么一个,也有的说是 CATALINA_HOME、CATALINA_BASE、TOMCAT_HOME 这3个。我看 Tomcat Document,CATALINA_HOME 好像是必须的,还有地方提到了 CATALINA_BASE,既然这样的话,那就三个都设置好了。

Java: the proxy parameter of the invoke() method

1 minute read

关于动态代理,一般的代码结构为:一个业务接口、一个业务接口的实现、一个自定义的 InvocationHandler 实现和 main 类,如下:

Java: throw 的屏蔽作用

less than 1 minute read

在其所在的块内 (如方法 body、if () {...} 等),throw 语句可以屏蔽其后的语句,即在块内,该 throw 语句后面不能再写其他语句;但在块之外,还是可以写其他的语句的。如: