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

com.yuweix.kuafu.schedule.springboot.ScheduleConf Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.schedule.springboot;


import com.yuweix.kuafu.schedule.ScheduleAspect;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;


/**
 * @author yuwei
 */
public class ScheduleConf {
	@ConditionalOnMissingBean(ScheduleAspect.class)
	@Bean(name = "scheduleAspect")
	public ScheduleAspect scheduleAspect() {
		return new ScheduleAspect();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy