본문 바로가기

반응형

emotional developer

Achieving Immutability with Builder Design Pattern http://java.dzone.com/articles/immutability-with-builder-design-pattern?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+javalobby/frontpage+(Javalobby+/+Java+Zone)Immutable Userview sourceprint?01.public class ImmutableUser {02. 03.private final String username;04.private final String password;05.private final String firstname;06.private final String lastname;07.private final String ema.. 더보기
apache common validator http://www.egovframe.org/wiki/doku.php?id=egovframework:rte:ptl:security:jakarta_commons_validator http://happybruce.com/entry/%ED%8E%8C%EA%B8%80-Apache-Commons-Validator%EC%9D%98-validationxml-%EC%84%A4%EB%AA%85-ver-113 http://mainia.tistory.com/336 더보기
My 5 reasons not to use short variable names anymore http://www.hendrikbeck.com/2010/08/03/my-5-reasons-not-to-use-short-variable-names-anymore/ 네이밍에 대한 포스팅. 현재 프로젝트에서 진행 중인 디비 네이밍을 생각하면 이게 얼마나 중요한지를 깨닫는다, 더보기
Build RESTful web services using Spring 3 http://www.ibm.com/developerworks/web/library/wa-spring3webserv/index.html 더보기
Using of Collections.emptyList() the right way in Java 1.5+ http://gochev.org/2010/07/using-of-collectionsemptylist-right-way.html 상당히 재미 있는 코드 스타일, 작은 것에서 차이가 날 수 있겠다. Answer 5: The right but strange looking answer. Book myCrazyBook=new Book(); myCrazyBook.setTitles(Collections.emptyList()); Yes this is not a joke there is a dot (.) then the generic type before the method name. This compiles, runs, no warnings thats the real way. It is a little strange .. 더보기
NoSQL 관련. http://fantazic.com/archives/517 따지크가 포스팅 한것. 이런 저런 생각을 종합해 보면, 어디든지 적용은 가능 할 듯하다. 요즘 같이 단순 데이터가 많이 쌓이는 구조에서 효과 있는 데이터 구축을 할 수 있을 것 같다. 더보기
How to Conduct Effective Code Reviews http://java.dzone.com/articles/how-conduct-effective-code?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+javalobby/frontpage+(Javalobby+/+Java+Zone) 코드 리뷰 관련 포스트. 공감 할 내용이 많다. 핵심 문장만 기억하자. 1.A good code review always goes beyond the obvious 2.Try to avoid becoming the bottleneck in the review process (I am not a big process weenie!!) 3.A process is just an enabler not the end in itself.. 더보기
Enum Types http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/java/javaOO/enum.html An enum type is a type whose fields consist of a fixed set of constants. Common examples include compass directions (values of NORTH, SOUTH, EAST, and WEST) and the days of the week.Because they are constants, the names of an enum type's fields are in uppercase letters. In the Java programming language, you define.. 더보기