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