iyuichiの私的開発ログ

渋谷で働くWebエンジニアのログ. Java, Android, iOS, Docker, GCP, AWS, ゲーム開発

spring

プロパティ・プレースホルダー

Spring 2.5では「context」ネーム空間が追加されたことで、プロパティ・プレースホルダー・コンフィギュレーションより簡潔な代替が使えるようになりました。<context:property-placeholder location="classpath:jdbc.properties"/></context:property-placeholder>

Advise の実行順序

同じメソッドに複数のAdviceが適用される場合に、実行順序の指定はできるか? ってことを調べてました。 どうやら、@OrderアノテーションのvalueまたはOrderedインターフェースを実装してgetValueメソッドの戻り値で制御できるらしい。 小さい値を返したアス…

Log4jConfigListener

Springに実装されていたか。。自前で実装してしまったorz [Java]SpringのLog4jConfigListener log4jConfigLocation /WEB-INF/log4j.properties org.springframework.web.util.Log4jConfigListener

The Spring Framework - Reference Documentation

Spring2.5 のリファレンス http://static.springframework.org/spring/docs/2.5.x/reference/index.html2.0系はこっち http://static.springframework.org/spring/docs/2.0.x/reference/index.html

Spring Batch

Spring Batch について少しづつ見ていきたいと思います。まずはindex http://static.springframework.org/spring-batch/spring-batch-docs/reference/html/index.html1. Spring Batch Introduction 2. The Domain Language of Batch 3. ItemReaders and Item…

Spring2.5の新機能についてメモ

Spring2.5 ドキュメント(英語)http://static.springframework.org/spring/docs/2.5.x/reference/index.html Spring2.5 紹介記事 Spring 2.5の新機能―Part 1 Spring 2.5の新機能を使ってアプリケーションを作る(その1) Spring 2.5の新機能を使ってアプリケ…