본문 바로가기

Programming!

ClearCase 를 쓰면서 느낀점. 속도문제 같은 것은 잠시 접어두고. 개인적으로는 IDE내에서 벗어난 상태에서 개발을 해야 하는 상황이 좋지 않습니다. 1. 계속 작업바에 뜨는 cc용 어플들을 일일히 닫아줘야 하고, 2. 좀 쉽게 하려 하면 cleartool에서 직접 command를 실행 시켜야 하고, 3. 로컬저장소와 중앙저장소의 sync 를 보고 싶을경우 머지 매니저 등으로 봐야하며, 4. 결과물 또한 tree형태의 리포팅이 아닌 path형태의 리포팅이라 보기가 어렵고 ................... 등등등 5. 웬만하면 cleartool용 플러그인 만들어서 반복된 일처리를 할 수 있도록 하는것이 좋을듯 싶습니다. 장점으로는 1. 너무나 많은 기능을 제공한다. 도저히 모르겠다. 2. IDE환경에서 벗어나 잠시 외도할 시간을 준다... 더보기
log4j log -> firefox/firebug Console http://logdigger.com/ About LogDigger LogDigger provides Java web application developers with instant access to application log messages directly from Firefox. LogDigger is an extension for Firefox and Firebug that collects Log4j log messages related to requested application URL and shows them in Firebug. It’s ideal for monitoring of application log messages in cases when multiple users access t.. 더보기
Oracle Scalar Subqueries | ORA-00913 회피 http://www.oratechinfo.co.uk/scalar_subqueries.html 음. 그래도 역시 function을 만들어야 한다는 단점이 존재하므로 최대한 조건처리 해서 left outer join을 거는 것이 개인적으로는 좋을 듯 합니다. Function많아봐야 관리도 안하고, 똑같은 기능 두번 세번 만들고 뭥미.... 더보기
How To: Making a PHP REST client to call REST resources http://www.sematopia.com/?p=153 뭘로하든 샘플소스는 모두 만들어 줘야 한다는것이 예의(?)인지라 호출용 샘플 코드를 만들어 주고 있습니다. 이젠 ASP만 하면 될듯. 더보기
java.util.Properties XML로 읽고 쓰기. loadFromXML storeToXML 규약이 있죠. ex) Properties properties = new Properties(); try { InputStream xmlStream = getClass().getResourceAsStream("resource/xxxxx.xml"); if( xmlStream == null ) { // null인데 어쩔껴.. } properties.loadFromXML(xmlStream); } catch (IOException exception) { // throw exception } DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> keyValue 더보기