javax.servlet.jsp.el.ELException: Unable to find a value for "Name" in object of class "com.cabletech.plan.util.TreeNode" using operator "." javaBean 中的变量首字母不能大写,要遵守java编码规范。 public class TreeNode { private String id; private String name; .... } 不能写成 public class TreeNode { private Strin ...
文章有些内容显示不全,请访问http://blog.csdn.net/simon_21/archive/2007/03/28/1544188.aspx这个地址。 定时执行任务的三种方法: 1)java.util.Timer. 2)ServletContextListener. 3)org.springframework.scheduling.timer.ScheduledTimerTask 1)java.util.Timer 这个方法应该是最常用的,不过这个方法需要手工启动你的任务:         Timer ti ...