package kr.wisestone.owl.config;
|
|
import org.mybatis.spring.annotation.MapperScan;
|
import org.springframework.context.annotation.ComponentScan;
|
import org.springframework.context.annotation.Configuration;
|
|
/**
|
* Created by jeong on 2017-08-01.
|
*/
|
@Configuration
|
@ComponentScan(basePackages = "kr.wisestone.owl")
|
@MapperScan(basePackages = "kr.wisestone.owl.mapper")
|
public class AppConfiguration {
|
|
}
|