idea实体类生成sql脚本插件
时间: 2023-10-18 09:03:37 浏览: 131
对于这个需求,可以采用MyBatis Generator插件来实现。
MyBatis Generator是MyBatis官方提供的一个代码生成工具,可以根据数据库表结构生成实体类、Mapper接口和XML文件。在生成实体类的同时,可以配置生成对应的SQL脚本,包括建表语句和插入语句等。
具体步骤如下:
1. 添加MyBatis Generator插件到项目依赖中。
```xml
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.4.0</version>
</dependency>
```
2. 配置MyBatis Generator插件的配置文件,包括数据库连接信息、要生成的表、生成的实体类和Mapper接口的包名等。
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<context id="MySqlContext" targetRuntime="MyBatis3">
<plugin type="org.mybatis.generator.plugins.UnmergeableXmlMappersPlugin"/>
<commentGenerator>
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/test"
userId="root"
password="root">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<javaModelGenerator targetPackage="com.example.entity"
targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<sqlMapGenerator targetPackage="com.example.mapper"
targetProject="src/main/resources">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<javaClientGenerator type="XMLMAPPER"
targetPackage="com.example.mapper"
targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<table schema="test" tableName="user" domainObjectName="User">
<property name="useActualColumnNames" value="true"/>
<property name="selectAllOrderByClause" value="id asc"/>
<generatedKey column="id" sqlStatement="MySql" identity="true"/>
</table>
</context>
</generatorConfiguration>
```
3. 运行MyBatis Generator插件的main方法,生成代码和SQL脚本。
```java
public class MyBatisGeneratorMain {
public static void main(String[] args) throws Exception {
List<String> warnings = new ArrayList<String>();
boolean overwrite = true;
File configFile = new File("generatorConfig.xml");
ConfigurationParser cp = new ConfigurationParser(warnings);
Configuration config = cp.parseConfiguration(configFile);
DefaultShellCallback callback = new DefaultShellCallback(overwrite);
MyBatisGenerator generator = new MyBatisGenerator(config, callback, warnings);
generator.generate(null);
for (String warning : warnings) {
System.out.println(warning);
}
}
}
```
运行以上代码后,就能在指定的包路径下生成实体类、Mapper接口和XML文件,同时也生成对应的SQL脚本。其中,建表语句在XML文件中,插入语句在对应的Mapper接口中。
以上就是实现这个需求的基本步骤,具体还需要根据自己的项目需求进行配置和修改。
阅读全文