Unable to install breakpoint エラーがでた(Absent Line Number Information)

breakpointを設定してサーバ(Tomcat)をデバッグ実行すると、このようなエラーが表示されました。
OKをクリックするとbreakpoint自体は正しく動いているようです。

参考までに、環境はこんな感じで構築したものです。(まとめ

Unable to install breakpoint in XXXXXAction&&EnhancedByS2AOP$$xxxxxxx due to missing line number attributes. Modify compiler options to generate line number attributes.

Reason:
Absent Line Number Information

おそらく通常のケースだと、プロジェクト右クリック->Properties->Java CompilerのClassfile Generation(もしくは、Eclipse設定->Java->Java Compiler内)にある「Add line number attributes...」という項目のチェックを入れる(入っている場合は外してApply、入れてApply)とよさそうです。
StackOverflow

ただし、今回はSeasar2AOPの仕組みによるエラーなのでこの方法は使えません。
AOPでは動的にクラスを書き換えているのでこのエラーをとめようとするのは難しそうです。
なので、単純に無視すればよさそうです。
「Don't tell me again」にチェックを入れます。

Window->Preference->Java->Debugで
「Warn when unable to install breakpoint...」のチェックをはずすのも同じことです

以上