LANGUAGE/Java & Groovy 2016. 1. 21. 23:20

///// Groovy (그루비)





///// 객체의 속성 값 출력하기


protected void printProps(def obj) {
def filtered = ['class', 'active']
print obj.properties
.sort { it.key }
.collect { it }
.findAll { !filtered.contains(it.key) }
.join(' / ')
println ''
}


///// 참고

dumping object's properties: http://padcom13.blogspot.kr/2009/12/groovy-dumping-objects-properties.html

슬라이드쉐어 그루비 소개: http://www.slideshare.net/skytear7/ss-28415601

'LANGUAGE > Java & Groovy ' 카테고리의 다른 글

[Groovy] with 객체 속성(필드) 한 번에 설정  (0) 2016.01.22
[Java] 객체 생성할 때 중괄호{{}} 두번으로 초기화(설정)  (0) 2016.01.22
JAVA 심화  (0) 2015.09.09
[Groovy]  (0) 2015.09.04
MyBatis  (0) 2015.09.02