2005-12-26から1日間の記事一覧

見える化は重要だよね

dev

「形から入る『見栄っ張り』アジャイル開発講座」 http://www.objectclub.jp/download/files/event/2005christmas/talks-sato.pdf 壁がないんだよね。。。タスクカードは50枚じゃ全然足りんのだよ。 P42ワロス。今週初めてバーンダーンチャートが期待値を実…

やな感じ

>groovy --version Groovy Version: 1.0-jsr-05-SNAPSHOT JVM: 1.5.0_05-b05 >type Person.groovy class Person { def @Property name def age } >type Demo.groovy def p = new Person(name:"Jeremy", age:16) println p.dump() >groovy Demo.groovy Demo.g…

Strutsで*.xmlの読み込み

いちいちweb.xmlにstruts-config.xmlの追加とstruts-config.xmlにvalidation.xmlを追加するのメンドクサイので フォルダが指定された場合にはそのフォルダ配下のxmlをすべて読み込みように拡張した。 あとで本家にpatchでも送るために strutsの最新ソースを…