mybatisplus和springboot的集成注解是
时间: 2023-08-29 20:04:20 浏览: 85
springboot+mybatis通用注解
在Spring Boot中集成MyBatis Plus可以使用注解 @MapperScan。该注解用于扫描Mapper类并自动将其添加到Spring上下文中,使得可以在其他组件中自动注入Mapper实例。
示例代码如下:
```java
@SpringBootApplication
@MapperScan("com.example.mapper")
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
```
在上面的示例中,@MapperScan注解指定了Mapper接口所在的包路径,这里是com.example.mapper。这样就可以在该包下的Mapper接口中使用@Autowired注解来自动注入Mapper实例了。
阅读全文