Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

정의없이 모든 Object에 대응하는 map 사용도 가능하지만, DAO정의 없을시 사용레벨에서 필드명을 파악해야하고DAO를  정의해서 사용하느냐?

정의없이 구현레벨에서 분석 사용하느냐?  각각 장단점이 제어가 어려워질수 있습니다.

Code Block
languagejava
themeEmacs
package com.example.demo.data;

public class AddressStatistics {
	private String 	fname;  //집계대상 필드는 변동이될수 있기때문에 한정짓지말고,공용이름을 사용합니다.
	private Long	cnt;
	
	public AddressStatistics(String fname,Long cnt) {
		this.fname = fname;
		this.cnt = cnt;
	}
}

...