Java Gurus、
私はかなり新しいannotations
ので、我慢してください...
Custom Annotation
メソッドを呼び出すを実装しintercept
、メソッドにかかった時間を出力したいと思います。出来ますか?
@EnableElapsedTime
public MyAppObject findMyAppObjectById(Long id) throws MyCustomException {
//....
}
ログに次のようなものを出力する必要があります。
findMyAppObjectById() took 2.345 sec.
これに関するヒントを教えてもらえますか?