Spring Boot 和 MyBatis-Plus 的简单整合
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@MapperScan("com.example.demo.mapper") // 指定Mapper接口所在的包
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
这段代码展示了如何在Spring Boot应用中使用@MapperScan
注解来指定MyBatis-Plus的Mapper接口所在的包。这样做可以让Spring Boot自动扫描并注册这些Mapper接口,使得它们可以被注入到服务层中使用。
评论已关闭