エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
kimullaa/event-examplegithub.com ApplicationEventApplicationEventを拡張して任意のイベントを作成す... kimullaa/event-examplegithub.com ApplicationEventApplicationEventを拡張して任意のイベントを作成する。 public class SlotStartEvent extends ApplicationEvent { private final Rotation rotation; public SlotStartEvent(Object source, Rotation rotation) { super(source); this.rotation = rotation; } public Rotation getRotation() { return rotation; } } PublisherApplicationEventPublisher を使ってイベントを発行する。 @Component @Data @Slf4j