1. 程式人生 > >錯誤中學習--Exception occurred during processing request: null

錯誤中學習--Exception occurred during processing request: null

今天遇到的異常

Exception occurred during processing request: null

先描述一下問題的由來,在用struts2接收物件資料,報錯,怎麼取也是空

原因是:

	private DictionaryType dType;
	
	public DictionaryType getdType() {
		return dType;
	}

	public void setdType(DictionaryType dType) {
		this.dType = dType;
	}

仔細看get和set後的第一個字母是小寫的,我這個是用eclipse自動生成的,所以沒注意到這個問題,後來改成
       private DictionaryType dicType;

就能接到值了.所以起名字的時候,前面的小寫部分名字不要太短,至少三個字元以上