2009-10-15から1日間の記事一覧

T2 + Doma

id:c9katayamaさんとid:yone098さんが、T2+Spring+DomaのサンプルとT2+Guice+Domaのサンプルをつくってくれました。 http://d.hatena.ne.jp/c9katayama/20091011ありがとうございます!コメントに書いたのですが、@Daoのconfig要素に指定するクラスはコンテ…

Daoはinterfaceのみ(実装クラスつくらない)という手法が広まりつつあるのか?

Generic RepositoryがTSSで紹介されていましたが、これもDao(Repository)をinterfaceにして、メソッドにアノテーションつけるタイプですね。 public interface UserRepository extends ReadWriteJpaRepository<User, Long> { @GenericQuery(query = "from User where u</user,>…