15 lines
320 B
Java
15 lines
320 B
Java
|
|
package com.chinaweal.youfool.devops.config;
|
||
|
|
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.context.annotation.ImportResource;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 引用定时任务的xml
|
||
|
|
*/
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
@ImportResource(locations = {"classpath:spring-timer.xml"})
|
||
|
|
public class SchedulingXmlConfig {
|
||
|
|
|
||
|
|
}
|