Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本的な質問があります...なぜ機能しないのかわかりませんでした...@Overrideアノテーションを使用すると以下のコードが機能しません。助けてください
public class QuartzJob implements ApplicationListener<ContextRefreshedEvent> { @Override public void onApplicationEvent(ContextRefreshedEvent event) { } }
私の推測では、Java 1.5用にコンパイルしていて、Java 1.6からのみ、インターフェースメソッドを実装することで(そして良いスタイルで)追加することができ@Overrideます。
@Override