因为你的get方法定义的是 getCounter(),<jsp:getProperty name="count" property="counter"/>中的 property="value"的值是什么,他调用的就是getValue,所以对于你的的这个必须是 property="counter",我建议你应该更改一下你的get和set方法,改成 public void setCount(int count) { Count = count; } public int getCount() { return ++Count; }希望对你有所帮助! |