All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openea.eap.module.system.job.demo.DemoJob Maven / Gradle / Ivy

Go to download

system 模块下,我们放通用业务,支撑上层的核心业务。 例如说:用户、部门、权限、数据字典等等

The newest version!
package org.openea.eap.module.system.job.demo;

import org.openea.eap.framework.tenant.core.job.TenantJob;
import com.xxl.job.core.handler.annotation.XxlJob;
import org.springframework.stereotype.Component;

@Component
public class DemoJob {

    @XxlJob("demoJob")
    @TenantJob
    public void execute() {
        System.out.println("美滋滋");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy