Recent Posts

Spring MVC example anatomy

1 minute read

例子来自 Developing a Spring Framework MVC application step-by-step ,版本是 spring-framework-2.5.6.SEC01。

IR 经典模型之向量模型

less than 1 minute read

1. 向量模型同样将 dj 和 qcc 同级计算,采用的同级方式是扩展 qcc 到 t 维

Java: a simple delegation example

less than 1 minute read

public void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException, ServletException { doGet(req, resp); }

Ant 中 javac 假死的解决办法

less than 1 minute read

当前项目用的是 eclipse 3.5,然后文件编码都是 utf-8。在执行 Ant 脚本时,javac 死活不动,解决方案是:右键 build.xml –> run as –> External Tools Configurations –> Common 选项卡 –> Console ...