使用springboot时*mapper.xml无法加载的问题

时间:2021-12-14 00:33:46

由于公司里所有的项目都是springboot没办法 只能学习了
在整合mybatis时发现我配置的mapper并没有加载
我已经在application.yml中配置了路径,还是无效果

mybatis:
mapper-locations: "classpath*:mybatis/*.xml"

后来问了师兄发现在创建springboot项目后会生成一个*application.class类。在上面添加一些注解即可,这样在程序运行的时候就会自动扫描我们配置的mapper.xml文件

@Controller
@EnableAutoConfiguration
@SpringBootApplication(scanBasePackages = "com.scx")
@MapperScan("com.scx.mapper")
public class ManagerApplication {

public static void main(String[] args) {
SpringApplication.run(ManagerApplication.class, args);
}

@RequestMapping("/")
String home(){
return "redirect:user/table";
}
}