错误语句:<bean:write name="JobsValue" property="JobId"/>
改    为:<bean:write name="JobsValue" property="jobId"/>
原    因:struts模式中,jsp页面上form中的输入数据的控件名要用小写(第一个字母),这样可以避免与页面对应的FormAction中的get和set方法命名冲突。