14 lines
244 B
Java
14 lines
244 B
Java
package com.tiesheng.util;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
/**
|
|
* @author hao
|
|
*/
|
|
@ComponentScan({
|
|
"com.tiesheng.util.**.*",
|
|
})
|
|
@ComponentScan("cn.hutool.extra.spring")
|
|
public class UtilAutoConfigurer {
|
|
}
|