13 lines
217 B
Java
13 lines
217 B
Java
package com.tiesheng.migration;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
/**
|
|
* @author hao
|
|
*/
|
|
@ComponentScan({
|
|
"com.tiesheng.migration.**.*"
|
|
})
|
|
public class MigrationAutoConfigurer {
|
|
}
|