프로그램 309

10 Object Oriented Design Principles Java Programmer should know

펌입니다... 좋은 내용 같네요. 10 Object Oriented Design Principles Java Programmer should know Read more: http://javarevisited.blogspot.com/2012/03/10-object-oriented-design-principles.html#ixzz3AEWwGios Though best way of learning any design principle or pattern is real world example and understanding the consequences of violating that design principle, subject of this article is Introducing Object orient..

프로그램/java 2014.08.13

bootstrap 3.0 이해하기 1편

Bootstrap을 사용하려면 Grid CSS를 이해하는데에서 시작한다.2.0 이전 버전에서는 .row , .spanXX 를 이용하여 grid 를 만들었지만3.0 이상의 버전에서는 좀 다르다. 3.0 이상 버전에서는 "mobile first"라는 목표하에 모든 css 에 변화가 왔다.게으로 개발자로서는 매우 불쾌한 일이기도 하죠.대체 왜 이전 버전하고 호환이 안되는 이런 엄청난 변화가 일어난거지.... 당현한 불평이죠. 일단 내용을 좀 보자면 요즘 여러 해상도의 레이아웃을 해결할 수 있도록 하는 "responsive layout" 기능의 구현에 노력한것 같습니다. 일단 변화된 grid 시스템의 요체가 아래와 같습니다.

프로그램 2014.08.07

vi vim advanced options

vi vim 사용중 가장 기억하지 못하는 것들이 set 옵션들이다.그래서 갈무리 해 둡니다...원본 : http://www.yolinux.com/TUTORIALS/LinuxTutorialAdvanced_vi.htmlVi/Vim modes:Vi/Vim modes are set using the "set" command and its many options.:set all - display all mode settings of your editing session. :set termcap - display terminal settings of your editing session.:set ic - Change default to ignore case for text searches Default is cha..

프로그램 2014.06.09

jQuery Dialog를 이용한 Overlay-box 를 구현하기.

약간의 꼼수 .. 입니다. jQuery dialog 의 Modal 기능을 이용하여 Overlay Box를 쉽게 구현 할 수 있습니다. 일단 overlay box의 opacity를 아래와 같이 조절 합니다. .ui-widget-overlay { opacity: .30;filter:Alpha(Opacity=30); } 그리고 아래와 같이 dialog를 로딩할때 타이틀바를 숨긴다. $('div.ui-dialog-titlebar').hide()window.moveToLineDlg = $('Move To My Line').dialog({ width: "400px", minHeight: "100px", autoOpen: true, modal: true, open: function() { $('div.ui-dialo..

프로그램/jQuery 2014.05.11

mybatis ResolveUtil Fail이 나는경우

Mybatis ResolverUtil Fail: 멀더에게 mybatis설정에 의한 시련이 있었다..아무래도 mapper resolve 에러인것 같은데... 기존 프로젝트 설정을 유지했는데..문제가 뭘까. 버전을 내리니 된다. Sorry Surjit, I forget to mention that mybatis 3.1.0 needs mybatis-spring 1.1.0. Please try again with it. 이유가 없다. JBoss 라이브러리가 문제인듯아래를 참조 바랍니다. https://code.google.com/p/mybatis/issues/detail?id=479

프로그램/spring 2014.04.28

String 이 List안에 있는지 확인하는 Utility

String 이 List안에 있는지 확인하는 Utility apache common collections 의 CollectionUtils 이용하는 방법을 소개 합니다. 3가지 많이쓰는 매칭 방법을 이용하도록 하였습니다. :) import org.apache.commons.collections.CollectionUtils; import org.apache.commons.collections.Predicate; /** * List안에 checkString 이 있는지 확인, * * @param list * @param checkString * @param checkMethod -1: startsWidth, 0: equals , 1: endsWith * @return */ public static boolean..

프로그램/java 2014.04.22

mongodb Select 및 Array Print - study 002

mongodb 두번째... 테스트 입니다.주로 문서의 생성과 select 부분입니다... mysql로 치자면 offset, limit 부분이 skip, limit 로 사용됩니다. > db.mydb.insert({name:'mulder', age:10});> show dbs; // show dbs명령으로 현재 db의스키마 를 볼수 있습니다.local(empty)mydb0.203125GBtest0.203125GB> show collections;mydbsystem.indexes> > db.mydb.find();{ "_id" : ObjectId("5327b40e45fb223e46f90dbf"), "name" : "mulder", "age" : 10 }> db.mydb.insert({name:'scully', ..

프로그램/nosql 2014.03.18