什麼是逆向工程
MyBatis的一個主要的特色就是須要程序員本身編寫sql,那麼若是表太多的話,不免會很麻煩,因此mybatis官方提供了一個逆向工程,能夠針對單表自動生成mybatis執行所須要的代碼(包括mapper.xml、mapper.java、po..)。通常在開發中,經常使用的逆向工程方式是經過數據庫的表生成代碼。java
使用逆向工程
使用MyBatis的逆向工程,須要導入逆向工程的jar包,我用的是mybatis-generator-core-1.3.2.jar
,下面開始總結一下MyBatis逆向工程的使用步驟。mysql
新建一個工程(重要)
咱們要新建一個java工程,這個工程專門用來使用逆向工程生成代碼的。有些人可能會問,爲何要新建一個工程呢?直接在原來工程中你想生成不就能夠了麼?確實是這樣,能夠在原來的工程中生成,可是有風險,由於MyBatis是根據配置文件來生成的(下面會說到),若是生成的路徑中有相同的文件,那麼就會覆蓋原來的文件,這樣會有風險。因此開發中通常都會新建一個java工程來生成,而後將生成的文件拷貝到本身的工程中,這也不麻煩,並且很安全。以下:
從上圖中看,①就是要執行的java代碼,執行它便可生成咱們須要的代碼;②是執行過程當中新建的包,這個包均可以在④的配置文件中指定,最好是跟咱們本身項目的包名一致,後面就能夠直接拷貝了,就不須要修改包名了;③就是jar包咯;④是配置文件,下面會詳細分析。
讀者如若須要MyBatis的逆向工程——generatorSqlmapCustom,可點擊MyBatis的逆向工程——generatorSqlmapCustom進行下載!程序員
配置逆向工程的配置文件
MyBatis逆向工程生成代碼須要一個配置文件,名字隨便起。而後MyBatis會根據這個配置文件中的配置,生成相應的代碼。mybatis-generator-core-1.3.2.jar
這個jar包裏面有幫助文檔,打開后里面有配置文件的模板,這裏就再也不贅述了,下面先把配置文件寫好:web
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
<?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="testTables" targetRuntime="MyBatis3">
<commentGenerator>
<property name="suppressAllComments" value="true" />
</commentGenerator>
<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/mybatis" userId="root" password="yezi">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false" />
</javaTypeResolver>
<javaModelGenerator targetPackage="com.itheima.mybatis.po" targetProject=".\src">
<property name="enableSubPackages" value="false" />
<property name="trimStrings" value="true" />
</javaModelGenerator>
<sqlMapGenerator targetPackage="com.itheima.mybatis.mapper" targetProject=".\src">
<property name="enableSubPackages" value="false" />
</sqlMapGenerator>
<javaClientGenerator type="XMLMAPPER" targetPackage="com.itheima.mybatis.mapper" targetProject=".\src">
<property name="enableSubPackages" value="false" />
</javaClientGenerator>
<table schema="" tableName="user"></table>
<table schema="" tableName="orders"></table>
</context>
</generatorConfiguration>
從上面的配置文件中能夠看出,配置文件主要作的幾件事是:spring
- 鏈接數據庫,這是必須的,要否則怎麼根據數據庫的表生成代碼呢?
- 指定要生成代碼的位置,要生成的代碼包括po類,mapper.xml和mapper.java
- 指定數據庫中想要生成哪些表
執行逆向工程生成代碼
配置文件搞好了,而後就執行如下程序便可生成代碼了,生成的java程序,下載的逆向工程文檔中都有示例,以下:sql
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
public class GeneratorSqlmap {
public void generator()
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 myBatisGenerator =
new MyBatisGenerator(config,
callback, warnings);
myBatisGenerator.generate(
null);
}
public static void main(String[] args)
throws Exception {
try {
GeneratorSqlmap generatorSqlmap =
new GeneratorSqlmap();
generatorSqlmap.generator();
}
catch (Exception e) {
e.printStackTrace();
}
}
}
運行一下便可,運行完了後刷新一下工程,就能夠看到最新生成的代碼了。
這裏能夠看出有個細節,每一個po類多了一個東西,就是xxxExample.java,這個類是給用戶自定義sql使用的,後面我會提到。到這裏就生成好了,下面咱們就把生成的代碼拷貝到本身的工程使用了。數據庫
逆向工程測試
在這裏我把生成的代碼拷貝到上文MyBatis框架的學習(六)——MyBatis整合Spring的工程案例中,以下:
接着在Spring核心配置文件——application-context.xml添加以下配置:安全
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.itheima.mybatis.mapper" />
</bean>
最後編寫UserMapper接口的單元測試類——UserMapperTest.java,內容以下:markdown
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
public class UserMapperTest {
private ApplicationContext applicationContext;
@Before
public void init() {
applicationContext =
new ClassPathXmlApplicationContext(
"classpath:spring/application-context.xml");
}
@Test
public void testDeleteByPrimaryKey() {
}
@Test
public void testInsert() {
UserMapper userMapper = applicationContext.getBean(UserMapper.class);
User user =
new User();
user.setUsername(
"武大郎");
user.setSex(
"1");
user.setBirthday(
new Date());
user.setAddress(
"河北清河縣");
userMapper.insert(user);
}
@Test
public void testSelectByExample() {
UserMapper userMapper = applicationContext.getBean(UserMapper.class);
UserExample example =
new UserExample();
List<User> list = userMapper.selectByExample(example);
for (User user : list) {
System.out.println(user);
}
}
@Test
public void testSelectByPrimaryKey() {
UserMapper userMapper = applicationContext.getBean(UserMapper.class);
User user = userMapper.selectByPrimaryKey(
10);
System.out.println(user);
}
@Test
public void testUpdateByPrimaryKey() {
}
}
能夠看出,逆向工程生成的代碼,基本上和以前使用的差很少,只不過它更規範一點,並且還多了自定義查詢條件的java類,用起來仍是挺方便的。關於MyBatis的逆向工程就總結到這吧。
最後,我仍是給出逆向工程測試的工程吧!讀者可點擊MyBatis框架的學習(七)——MyBatis逆向工程自動生成代碼進行下載。
<link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/markdown_views-ea0013b516.css">
</div>