2009-04-01から1ヶ月間の記事一覧

パラメータアノテーション

長い間、使う意味が解らなかったものを見つけた時の喜びが感動である。 メソッドのパラメータにつけるアノテーションの便利さが、なかなか見つからなかった。 見つけた時の感動を忘れずに励みにしようと思う。 import java.lang.annotation.Annotation; impo…

CSV解析準備-3

そして最後、@Interceptとpublic final class InterceptMatcher は、前に書いたので、最後に、、、 import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.anno…

CSV解析準備-2

前回のつづき、次はインタセプタで処理実行を横取りである。 import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.lang.reflect.Field; import java.util.ArrayList; import java.util.List; import org.aopallian…

CSV解析準備-1

1年前に考えたコードを整理しようと思った。 ここで重要なのは、bindInterceptorの使い方である。 import com.google.inject.Binder; import com.google.inject.Guice; import com.google.inject.Injector; import com.google.inject.Module; import com.go…