16 lines
421 B
Java
16 lines
421 B
Java
package com.macro.mall.config;
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
|
|
|
/**
|
|
* MyBatis相关配置
|
|
* Created by macro on 2019/4/8.
|
|
*/
|
|
@Configuration
|
|
@EnableTransactionManagement
|
|
@MapperScan({"com.macro.mall.mapper","com.macro.mall.dao"})
|
|
public class MyBatisConfig {
|
|
}
|