1、排查Mapper是否正确
@Mapper
public interface TableMapper extends BaseMapper<Table>{
}
2、检查Mybatis-Plus的yml配置
mybatis-plus:
mapper-locations: classpath*:mybatis/mapper/*.xml
type-aliases-package: com.grgbanking.metadatamanage.model.pojo
configuration:
map-underscore-to-camel-case: true
use-generated-keys: true
config-location: classpath*:mybatis/mybatis-config.xml
3、检查pom.xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.1.2</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-annotation</artifactId>
<version>3.1.2</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-extension</artifactId>
<version>3.1.2</version>
</dependency>
4、检查POJO,会不会遗漏这两个注解 @TableName @TableId
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("t_table")
public class Table {
/**
* 主键
*/
@TableId(value = "id",type = IdType.AUTO)
private Long id;
}
本文档主要介绍了如何检查Mybatis-Plus的配置,包括Mapper接口的使用、YML配置文件的内容,以及POM.XML中相关依赖的确认。同时展示了POJO类上的关键注解@example@TableId和@Table。确保这些步骤正确无误,可以避免Mybatis-Plus在项目中的运行错误。
6691

被折叠的 条评论
为什么被折叠?



