com.ling.spring.event.ZhangsanListener.java Source code

Java tutorial

Introduction

Here is the source code for com.ling.spring.event.ZhangsanListener.java

Source

/*
 * Copyright 2005-2020 Daxia Team All rights reserved.
 * Support: zhangzhen
 * License: Daxia Team license
 */
package com.ling.spring.event;

import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;

@Component
public class ZhangsanListener implements ApplicationListener<ContentEvent> {

    @Override
    public void onApplicationEvent(ContentEvent event) {
        System.out.println(":" + event.getSource());
    }

}