mybatis 怎么生成example类属性
时间: 2023-11-05 17:04:21 浏览: 95
MyBatis自动生成代码(扩展)
MyBatis Generator 会自动生成 Example 类,通过配置表和字段信息,可以生成对应的 Example 类属性。在对应的 XML 配置文件中,需要添加如下配置:
```xml
<table tableName="your_table_name" domainObjectName="YourDomainObjectName" >
<generatedKey column="id" sqlStatement="JDBC" identity="true" />
<generatedKey column="id" sqlStatement="JDBC" identity="true" />
<generatedKey column="id" sqlStatement="JDBC" identity="true" />
<generatedKey column="id" sqlStatement="JDBC" identity="true" />
<generatedKey column="id" sqlStatement="JDBC" identity="true" />
<generatedKey column="id" sqlStatement="JDBC" identity="true" />
</table>
```
其中,`tableName` 属性指定数据库表名,`domainObjectName` 属性指定生成的 Java 实体类名。在 `table` 标签下,可以添加多个 `generatedKey` 标签,用于指定主键列和主键生成策略。当配置好后,使用 MyBatis Generator 插件生成代码时,就会自动生成对应的 Example 类和属性。
阅读全文