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

com.nb6868.onex.api.modules.sched.task.TestTask Maven / Gradle / Ivy

There is a newer version: 1.9.21
Show newest version
package com.nb6868.onex.api.modules.sched.task;

import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;

/**
 * 测试定时任务(演示Demo,可删除)
 *
 * testTask为spring bean的名称
 *
 * @author Charles [email protected]
 */
@Component("TestTask")
@Slf4j
public class TestTask implements ITask {

	@Override
	public void run(String params){
		log.info("TestTask定时任务正在执行,参数为:{}", params);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy