您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“SSM框架如何通過mybatis-generator自動生成代碼”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“SSM框架如何通過mybatis-generator自動生成代碼”這篇文章吧。
一、首先eclipse配置好maven環境,并且創建好一個SSM框架的工程
二、在pom.xml中添加plugin
<build> <finalName>ssm_web</finalName> <pluginManagement> <plugins> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.2</version> <configuration> <configurationFile>src/main/resources/mybatis-generator/generatorConfig.xml</configurationFile> <verbose>true</verbose> <overwrite>true</overwrite> </configuration> <executions> <execution> <id>Generate MyBatis Artifacts</id> <goals> <goal>generate</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.40</version> <scope>runtime</scope> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> </build>
注意:
1、pom中添加插件要在<build></build>標簽里面,并且在這里指定數據庫驅動,那么在下一步配置generatorConfig.xml的時候就不用在指定數據庫驅動的本地路徑;
2、src/main/resources/mybatis-generator/generatorConfig.xml指定的是generatorConfig.xml配置文件的路徑,大家可以根據自己的實際情況調整;
三、generatorConfig.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> <!-- <classPathEntry location="E:/maven/repository/mysql/mysql-connector-java/5.1.40/mysql-connector-java-5.1.40.jar"/> --> <context id="my" targetRuntime="MyBatis3"> <commentGenerator> <property name="suppressDate" value="false" /> <property name="suppressAllComments" value="true" /> </commentGenerator> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3306/crm" userId="root" password="root" /> <javaModelGenerator targetPackage="com.xdw.model" targetProject="F:/javawebworkspace/ssm_web/src/main/java"> <property name="enableSubPackages" value="true" /> <property name="trimStrings" value="true" /> </javaModelGenerator> <sqlMapGenerator targetPackage="com.xdw.mapping" targetProject="F:/javawebworkspace/ssm_web/src/main/java"> <property name="enableSubPackages" value="true" /> </sqlMapGenerator> <javaClientGenerator targetPackage="com.xdw.dao" targetProject="F:/javawebworkspace/ssm_web/src/main/java" type="XMLMAPPER"> <property name="enableSubPackages" value="true" /> </javaClientGenerator> <table tableName="house_type" domainObjectName="HouseType"> <!-- <property name="useActualColumnNames" value="true"/> --> </table> </context> </generatorConfiguration>
配置講解:
1、classPathEntry location在這里可以不用配置,因為之前pom中已經配置了數據庫驅動;
2、jdbcConnection按照自己的數據庫配置相應的驅動類,URL,用戶名和密碼;
3、javaModelGenerator,sqlMapGenerator,javaClientGenerator配置相應要生成的pojo類,DAO類和mapper對應的xml文件,targetPackage屬性指定包名,targetProject指定自己工程的路徑,
4、table標簽配置數據庫表和實體類的映射,tableName屬性指定表名,domainObjectName指定生成的pojo類名;<property name="useActualColumnNames" value="true"/>
如果配置的話,那么生成的實體類的屬性名稱就和數據庫
表的每個字段的名稱一樣,如果不配置,會將數據表里面的字段名稱通過_連接的字段自動生成經典的駝峰表示法,比如我這里有個字段名為type_id,生成的屬性名稱為typeId;
建議大家在數據庫建表的時候采用_將單詞分隔;
四、創建好之后點擊maven build
彈出
在goals中填入mybatis-generator:generate
,然后點擊Run
也可以用maven命令行輸入mvn mybatis-generator:generate
五、執行結果如下:
以上是“SSM框架如何通過mybatis-generator自動生成代碼”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。