Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mybatis-generator-plugin
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
mybatis-generator-plugin
Commits
51eb354d
Commit
51eb354d
authored
Jan 22, 2018
by
hewei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix[issues#16]:修复选择返回插件对于自定义column异常问题,不能直接使用resultType而只能使用resultMap进行
parent
d2ede434
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
333 additions
and
50 deletions
+333
-50
src/main/java/com/itfsw/mybatis/generator/plugins/SelectSelectivePlugin.java
...tfsw/mybatis/generator/plugins/SelectSelectivePlugin.java
+102
-7
src/test/java/com/itfsw/mybatis/generator/plugins/SelectSelectivePluginTest.java
.../mybatis/generator/plugins/SelectSelectivePluginTest.java
+115
-0
src/test/resources/mybatis-config.xml
src/test/resources/mybatis-config.xml
+0
-43
src/test/resources/scripts/SelectSelectivePlugin/mybatis-generator-with-constructorBased-false.xml
...ePlugin/mybatis-generator-with-constructorBased-false.xml
+58
-0
src/test/resources/scripts/SelectSelectivePlugin/mybatis-generator-with-constructorBased-true.xml
...vePlugin/mybatis-generator-with-constructorBased-true.xml
+58
-0
No files found.
src/main/java/com/itfsw/mybatis/generator/plugins/SelectSelectivePlugin.java
View file @
51eb354d
...
...
@@ -25,6 +25,8 @@ import org.mybatis.generator.api.dom.xml.Document;
import
org.mybatis.generator.api.dom.xml.TextElement
;
import
org.mybatis.generator.api.dom.xml.XmlElement
;
import
org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities
;
import
org.mybatis.generator.codegen.mybatis3.xmlmapper.elements.ResultMapWithBLOBsElementGenerator
;
import
org.mybatis.generator.codegen.mybatis3.xmlmapper.elements.ResultMapWithoutBLOBsElementGenerator
;
import
java.util.List
;
...
...
@@ -42,6 +44,7 @@ public class SelectSelectivePlugin extends BasePlugin {
public
static
final
String
METHOD_SELECT_BY_EXAMPLE_SELECTIVE
=
"selectByExampleSelective"
;
public
static
final
String
METHOD_SELECT_BY_PRIMARY_KEY_SELECTIVE
=
"selectByPrimaryKeySelective"
;
public
static
final
String
METHOD_SELECT_ONE_BY_EXAMPLE_SELECTIVE
=
"selectOneByExampleSelective"
;
public
static
final
String
ID_FOR_PROPERTY_BASED_RESULT_MAP
=
"BasePropertyResultMap"
;
/**
* 具体执行顺序 http://www.mybatis.org/generator/reference/pluggingIn.html
...
...
@@ -139,6 +142,29 @@ public class SelectSelectivePlugin extends BasePlugin {
*/
@Override
public
boolean
sqlMapDocumentGenerated
(
Document
document
,
IntrospectedTable
introspectedTable
)
{
// issues#16
if
(
introspectedTable
.
isConstructorBased
())
{
XmlElement
resultMapEle
=
new
XmlElement
(
"resultMap"
);
resultMapEle
.
addAttribute
(
new
Attribute
(
"id"
,
ID_FOR_PROPERTY_BASED_RESULT_MAP
));
String
returnType
;
if
(
introspectedTable
.
getRules
().
generateBaseRecordClass
())
{
returnType
=
introspectedTable
.
getBaseRecordType
();
}
else
{
returnType
=
introspectedTable
.
getPrimaryKeyType
();
}
resultMapEle
.
addAttribute
(
new
Attribute
(
"type"
,
returnType
));
commentGenerator
.
addComment
(
resultMapEle
);
if
(
introspectedTable
.
getRules
().
generateResultMapWithBLOBs
())
{
addResultMapElementsWithBLOBs
(
resultMapEle
,
introspectedTable
);
}
else
if
(
introspectedTable
.
getRules
().
generateBaseResultMap
())
{
addResultMapElementsWithoutBLOBs
(
resultMapEle
,
introspectedTable
);
}
document
.
getRootElement
().
getElements
().
add
(
0
,
resultMapEle
);
}
// 生成返回字段节点
XmlElement
columnsEle
=
new
XmlElement
(
"foreach"
);
columnsEle
.
addAttribute
(
new
Attribute
(
"collection"
,
"selective"
));
...
...
@@ -151,7 +177,12 @@ public class SelectSelectivePlugin extends BasePlugin {
commentGenerator
.
addComment
(
selectByExampleSelectiveEle
);
selectByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"id"
,
METHOD_SELECT_BY_EXAMPLE_SELECTIVE
));
selectByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultType"
,
introspectedTable
.
getRules
().
calculateAllFieldsClass
().
getFullyQualifiedName
()));
// issues#16
if
(
introspectedTable
.
isConstructorBased
())
{
selectByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
ID_FOR_PROPERTY_BASED_RESULT_MAP
));
}
else
{
selectByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
introspectedTable
.
getBaseResultMapId
()));
}
selectByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"parameterType"
,
"map"
));
selectByExampleSelectiveEle
.
addElement
(
new
TextElement
(
"select"
));
...
...
@@ -175,7 +206,12 @@ public class SelectSelectivePlugin extends BasePlugin {
commentGenerator
.
addComment
(
selectByPrimaryKeySelectiveEle
);
selectByPrimaryKeySelectiveEle
.
addAttribute
(
new
Attribute
(
"id"
,
METHOD_SELECT_BY_PRIMARY_KEY_SELECTIVE
));
selectByPrimaryKeySelectiveEle
.
addAttribute
(
new
Attribute
(
"resultType"
,
introspectedTable
.
getRules
().
calculateAllFieldsClass
().
getFullyQualifiedName
()));
// issues#16
if
(
introspectedTable
.
isConstructorBased
())
{
selectByPrimaryKeySelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
ID_FOR_PROPERTY_BASED_RESULT_MAP
));
}
else
{
selectByPrimaryKeySelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
introspectedTable
.
getBaseResultMapId
()));
}
selectByPrimaryKeySelectiveEle
.
addAttribute
(
new
Attribute
(
"parameterType"
,
"map"
));
selectByPrimaryKeySelectiveEle
.
addElement
(
new
TextElement
(
"select"
));
...
...
@@ -210,7 +246,12 @@ public class SelectSelectivePlugin extends BasePlugin {
commentGenerator
.
addComment
(
selectOneByExampleSelectiveEle
);
selectOneByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"id"
,
METHOD_SELECT_ONE_BY_EXAMPLE_SELECTIVE
));
selectOneByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultType"
,
introspectedTable
.
getRules
().
calculateAllFieldsClass
().
getFullyQualifiedName
()));
// issues#16
if
(
introspectedTable
.
isConstructorBased
())
{
selectOneByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
ID_FOR_PROPERTY_BASED_RESULT_MAP
));
}
else
{
selectOneByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
introspectedTable
.
getBaseResultMapId
()));
}
selectOneByExampleSelectiveEle
.
addAttribute
(
new
Attribute
(
"parameterType"
,
"map"
));
selectOneByExampleSelectiveEle
.
addElement
(
new
TextElement
(
"select"
));
...
...
@@ -236,4 +277,58 @@ public class SelectSelectivePlugin extends BasePlugin {
return
true
;
}
/**
* @param answer
* @param introspectedTable
* @see ResultMapWithoutBLOBsElementGenerator#addResultMapElements(XmlElement)
*/
private
void
addResultMapElementsWithoutBLOBs
(
XmlElement
answer
,
IntrospectedTable
introspectedTable
)
{
for
(
IntrospectedColumn
introspectedColumn
:
introspectedTable
.
getPrimaryKeyColumns
())
{
XmlElement
resultElement
=
new
XmlElement
(
"id"
);
resultElement
.
addAttribute
(
new
Attribute
(
"column"
,
MyBatis3FormattingUtilities
.
getRenamedColumnNameForResultMap
(
introspectedColumn
)));
resultElement
.
addAttribute
(
new
Attribute
(
"property"
,
introspectedColumn
.
getJavaProperty
()));
resultElement
.
addAttribute
(
new
Attribute
(
"jdbcType"
,
introspectedColumn
.
getJdbcTypeName
()));
if
(
stringHasValue
(
introspectedColumn
.
getTypeHandler
()))
{
resultElement
.
addAttribute
(
new
Attribute
(
"typeHandler"
,
introspectedColumn
.
getTypeHandler
()));
}
answer
.
addElement
(
resultElement
);
}
List
<
IntrospectedColumn
>
columns
=
introspectedTable
.
getBaseColumns
();
for
(
IntrospectedColumn
introspectedColumn
:
columns
)
{
XmlElement
resultElement
=
new
XmlElement
(
"result"
);
resultElement
.
addAttribute
(
new
Attribute
(
"column"
,
MyBatis3FormattingUtilities
.
getRenamedColumnNameForResultMap
(
introspectedColumn
)));
resultElement
.
addAttribute
(
new
Attribute
(
"property"
,
introspectedColumn
.
getJavaProperty
()));
resultElement
.
addAttribute
(
new
Attribute
(
"jdbcType"
,
introspectedColumn
.
getJdbcTypeName
()));
if
(
stringHasValue
(
introspectedColumn
.
getTypeHandler
()))
{
resultElement
.
addAttribute
(
new
Attribute
(
"typeHandler"
,
introspectedColumn
.
getTypeHandler
()));
}
answer
.
addElement
(
resultElement
);
}
}
/**
* @param answer
* @param introspectedTable
* @see ResultMapWithBLOBsElementGenerator#addResultMapElements(XmlElement)
*/
private
void
addResultMapElementsWithBLOBs
(
XmlElement
answer
,
IntrospectedTable
introspectedTable
)
{
for
(
IntrospectedColumn
introspectedColumn
:
introspectedTable
.
getBLOBColumns
())
{
XmlElement
resultElement
=
new
XmlElement
(
"result"
);
resultElement
.
addAttribute
(
new
Attribute
(
"column"
,
MyBatis3FormattingUtilities
.
getRenamedColumnNameForResultMap
(
introspectedColumn
)));
resultElement
.
addAttribute
(
new
Attribute
(
"property"
,
introspectedColumn
.
getJavaProperty
()));
resultElement
.
addAttribute
(
new
Attribute
(
"jdbcType"
,
introspectedColumn
.
getJdbcTypeName
()));
if
(
stringHasValue
(
introspectedColumn
.
getTypeHandler
()))
{
resultElement
.
addAttribute
(
new
Attribute
(
"typeHandler"
,
introspectedColumn
.
getTypeHandler
()));
}
answer
.
addElement
(
resultElement
);
}
}
}
src/test/java/com/itfsw/mybatis/generator/plugins/SelectSelectivePluginTest.java
View file @
51eb354d
...
...
@@ -188,4 +188,119 @@ public class SelectSelectivePluginTest {
}
});
}
/**
* 测试生成的方法
* @throws Exception
*/
@Test
public
void
testSelectiveWithOrWithoutConstructorBased
()
throws
Exception
{
MyBatisGeneratorTool
tool
=
MyBatisGeneratorTool
.
create
(
"scripts/SelectSelectivePlugin/mybatis-generator-with-constructorBased-false.xml"
);
tool
.
generate
(
new
AbstractShellCallback
()
{
@Override
public
void
reloadProject
(
SqlSession
sqlSession
,
ClassLoader
loader
,
String
packagz
)
throws
Exception
{
// 1. 测试sql
ObjectUtil
tbMapper
=
new
ObjectUtil
(
sqlSession
.
getMapper
(
loader
.
loadClass
(
packagz
+
".TbMapper"
)));
ObjectUtil
tbExample
=
new
ObjectUtil
(
loader
,
packagz
+
".TbExample"
);
ObjectUtil
criteria
=
new
ObjectUtil
(
tbExample
.
invoke
(
"createCriteria"
));
criteria
.
invoke
(
"andIdLessThan"
,
100
l
);
tbExample
.
set
(
"orderByClause"
,
"field1 asc"
);
ObjectUtil
columnField1
=
new
ObjectUtil
(
loader
,
packagz
+
".Tb$Column#tsF1"
);
// java 动态参数不能有两个会冲突,最后一个封装成Array!!!必须使用反射创建指定类型数组,不然调用invoke对了可变参数会检查类型!
Object
columns1
=
Array
.
newInstance
(
columnField1
.
getCls
(),
1
);
Array
.
set
(
columns1
,
0
,
columnField1
.
getObject
());
String
sql
=
SqlHelper
.
getFormatMapperSql
(
tbMapper
.
getObject
(),
"selectByExampleSelective"
,
tbExample
.
getObject
(),
columns1
);
Assert
.
assertEquals
(
sql
,
"select field1 from tb WHERE ( id < '100' ) order by field1 asc"
);
ObjectUtil
columnField2
=
new
ObjectUtil
(
loader
,
packagz
+
".Tb$Column#field2"
);
Object
columns2
=
Array
.
newInstance
(
columnField1
.
getCls
(),
2
);
Array
.
set
(
columns2
,
0
,
columnField1
.
getObject
());
Array
.
set
(
columns2
,
1
,
columnField2
.
getObject
());
sql
=
SqlHelper
.
getFormatMapperSql
(
tbMapper
.
getObject
(),
"selectByExampleSelective"
,
tbExample
.
getObject
(),
columns2
);
Assert
.
assertEquals
(
sql
,
"select field1 , field2 from tb WHERE ( id < '100' ) order by field1 asc"
);
// 2. 执行sql
List
list
=
(
List
)
tbMapper
.
invoke
(
"selectByExampleSelective"
,
tbExample
.
getObject
(),
columns1
);
Assert
.
assertEquals
(
list
.
size
(),
3
);
int
index
=
0
;
for
(
Object
obj
:
list
)
{
if
(
index
==
0
)
{
Assert
.
assertNull
(
obj
);
}
else
{
ObjectUtil
objectUtil
=
new
ObjectUtil
(
obj
);
// 没有查询这两个字段
if
(
objectUtil
.
get
(
"id"
)
!=
null
||
objectUtil
.
get
(
"field2"
)
!=
null
)
{
Assert
.
assertTrue
(
false
);
}
if
(
index
==
1
)
{
Assert
.
assertEquals
(
objectUtil
.
get
(
"tsF1"
),
"fd1"
);
}
else
{
Assert
.
assertEquals
(
objectUtil
.
get
(
"tsF1"
),
"fd3"
);
}
}
index
++;
}
}
});
tool
=
MyBatisGeneratorTool
.
create
(
"scripts/SelectSelectivePlugin/mybatis-generator-with-constructorBased-true.xml"
);
tool
.
generate
(
new
AbstractShellCallback
()
{
@Override
public
void
reloadProject
(
SqlSession
sqlSession
,
ClassLoader
loader
,
String
packagz
)
throws
Exception
{
// 1. 测试sql
ObjectUtil
tbMapper
=
new
ObjectUtil
(
sqlSession
.
getMapper
(
loader
.
loadClass
(
packagz
+
".TbMapper"
)));
ObjectUtil
tbExample
=
new
ObjectUtil
(
loader
,
packagz
+
".TbExample"
);
ObjectUtil
criteria
=
new
ObjectUtil
(
tbExample
.
invoke
(
"createCriteria"
));
criteria
.
invoke
(
"andIdLessThan"
,
100
l
);
tbExample
.
set
(
"orderByClause"
,
"field1 asc"
);
ObjectUtil
columnField1
=
new
ObjectUtil
(
loader
,
packagz
+
".Tb$Column#tsF1"
);
// java 动态参数不能有两个会冲突,最后一个封装成Array!!!必须使用反射创建指定类型数组,不然调用invoke对了可变参数会检查类型!
Object
columns1
=
Array
.
newInstance
(
columnField1
.
getCls
(),
1
);
Array
.
set
(
columns1
,
0
,
columnField1
.
getObject
());
String
sql
=
SqlHelper
.
getFormatMapperSql
(
tbMapper
.
getObject
(),
"selectByExampleSelective"
,
tbExample
.
getObject
(),
columns1
);
Assert
.
assertEquals
(
sql
,
"select field1 from tb WHERE ( id < '100' ) order by field1 asc"
);
ObjectUtil
columnField2
=
new
ObjectUtil
(
loader
,
packagz
+
".Tb$Column#field2"
);
Object
columns2
=
Array
.
newInstance
(
columnField1
.
getCls
(),
2
);
Array
.
set
(
columns2
,
0
,
columnField1
.
getObject
());
Array
.
set
(
columns2
,
1
,
columnField2
.
getObject
());
sql
=
SqlHelper
.
getFormatMapperSql
(
tbMapper
.
getObject
(),
"selectByExampleSelective"
,
tbExample
.
getObject
(),
columns2
);
Assert
.
assertEquals
(
sql
,
"select field1 , field2 from tb WHERE ( id < '100' ) order by field1 asc"
);
// 2. 执行sql
List
list
=
(
List
)
tbMapper
.
invoke
(
"selectByExampleSelective"
,
tbExample
.
getObject
(),
columns1
);
Assert
.
assertEquals
(
list
.
size
(),
3
);
int
index
=
0
;
for
(
Object
obj
:
list
)
{
if
(
index
==
0
)
{
Assert
.
assertNull
(
obj
);
}
else
{
ObjectUtil
objectUtil
=
new
ObjectUtil
(
obj
);
// 没有查询这两个字段
if
(
objectUtil
.
get
(
"id"
)
!=
null
||
objectUtil
.
get
(
"field2"
)
!=
null
)
{
Assert
.
assertTrue
(
false
);
}
if
(
index
==
1
)
{
Assert
.
assertEquals
(
objectUtil
.
get
(
"tsF1"
),
"fd1"
);
}
else
{
Assert
.
assertEquals
(
objectUtil
.
get
(
"tsF1"
),
"fd3"
);
}
}
index
++;
}
}
});
}
}
src/test/resources/mybatis-config.xml
deleted
100644 → 0
View file @
d2ede434
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2017.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTDSQL Map Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<properties
resource=
"db.properties"
/>
<settings>
<setting
name=
"callSettersOnNulls"
value=
"true"
/>
</settings>
<!-- 配置环境,制定数据库连接信息 -->
<environments
default=
"test"
>
<environment
id=
"test"
>
<transactionManager
type=
"JDBC"
/>
<dataSource
type=
"POOLED"
>
<property
name=
"driver"
value=
"${db.driver}"
/>
<property
name=
"url"
value=
"${db.url}"
/>
<property
name=
"username"
value=
"${db.username}"
/>
<property
name=
"password"
value=
"${db.password}"
/>
</dataSource>
</environment>
</environments>
<mappers>
<!-- Mapper扫描包,必须同目录同名称下-->
<mapper
resource=
"E:\work_java\mybatis-generator-plugin\target\test-tmp\123456\com\itfsw\mybatis\generator\plugins\dao\TbMapper.xml"
/>
</mappers>
</configuration>
\ No newline at end of file
src/test/resources/scripts/SelectSelectivePlugin/mybatis-generator-with-constructorBased-false.xml
0 → 100644
View file @
51eb354d
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2018.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<properties
resource=
"db.properties"
/>
<!--导入属性配置 -->
<context
id=
"default"
targetRuntime=
"MyBatis3"
>
<!-- 插件 -->
<!-- Select Selective插件 -->
<plugin
type=
"com.itfsw.mybatis.generator.plugins.SelectSelectivePlugin"
/>
<!-- 数据Model属性对应Column获取插件 -->
<plugin
type=
"com.itfsw.mybatis.generator.plugins.ModelColumnPlugin"
/>
<!-- 查询单条数据插件 -->
<plugin
type=
"com.itfsw.mybatis.generator.plugins.SelectOneByExamplePlugin"
/>
<!--jdbc的数据库连接 -->
<jdbcConnection
driverClass=
"${driver}"
connectionURL=
"${url}"
userId=
"${username}"
password=
"${password}"
/>
<!-- Model模型生成器,用来生成含有主键key的类,记录类 以及查询Example类
targetPackage 指定生成的model生成所在的包名
targetProject 指定在该项目下所在的路径 -->
<javaModelGenerator
targetPackage=
""
targetProject=
""
>
<!-- 是否对model添加 构造函数 -->
<property
name=
"constructorBased"
value=
"false"
/>
</javaModelGenerator>
<!--Mapper映射文件生成所在的目录 为每一个数据库的表生成对应的SqlMap文件 -->
<sqlMapGenerator
targetPackage=
""
targetProject=
""
/>
<!-- 客户端代码,生成易于使用的针对Model对象和XML配置文件 的代码
type="ANNOTATEDMAPPER",生成Java Model 和基于注解的Mapper对象
type="MIXEDMAPPER",生成基于注解的Java Model 和相应的Mapper对象
type="XMLMAPPER",生成SQLMap XML文件和独立的Mapper接口 -->
<javaClientGenerator
targetPackage=
""
targetProject=
""
type=
"XMLMAPPER"
/>
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 要自动生成的表 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<table
tableName=
"tb"
>
<generatedKey
column=
"id"
sqlStatement=
"MySql"
identity=
"true"
/>
<columnOverride
column=
"field1"
property=
"tsF1"
/>
</table>
</context>
</generatorConfiguration>
\ No newline at end of file
src/test/resources/scripts/SelectSelectivePlugin/mybatis-generator-with-constructorBased-true.xml
0 → 100644
View file @
51eb354d
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2018.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<properties
resource=
"db.properties"
/>
<!--导入属性配置 -->
<context
id=
"default"
targetRuntime=
"MyBatis3"
>
<!-- 插件 -->
<!-- Select Selective插件 -->
<plugin
type=
"com.itfsw.mybatis.generator.plugins.SelectSelectivePlugin"
/>
<!-- 数据Model属性对应Column获取插件 -->
<plugin
type=
"com.itfsw.mybatis.generator.plugins.ModelColumnPlugin"
/>
<!-- 查询单条数据插件 -->
<plugin
type=
"com.itfsw.mybatis.generator.plugins.SelectOneByExamplePlugin"
/>
<!--jdbc的数据库连接 -->
<jdbcConnection
driverClass=
"${driver}"
connectionURL=
"${url}"
userId=
"${username}"
password=
"${password}"
/>
<!-- Model模型生成器,用来生成含有主键key的类,记录类 以及查询Example类
targetPackage 指定生成的model生成所在的包名
targetProject 指定在该项目下所在的路径 -->
<javaModelGenerator
targetPackage=
""
targetProject=
""
>
<!-- 是否对model添加 构造函数 -->
<property
name=
"constructorBased"
value=
"true"
/>
</javaModelGenerator>
<!--Mapper映射文件生成所在的目录 为每一个数据库的表生成对应的SqlMap文件 -->
<sqlMapGenerator
targetPackage=
""
targetProject=
""
/>
<!-- 客户端代码,生成易于使用的针对Model对象和XML配置文件 的代码
type="ANNOTATEDMAPPER",生成Java Model 和基于注解的Mapper对象
type="MIXEDMAPPER",生成基于注解的Java Model 和相应的Mapper对象
type="XMLMAPPER",生成SQLMap XML文件和独立的Mapper接口 -->
<javaClientGenerator
targetPackage=
""
targetProject=
""
type=
"XMLMAPPER"
/>
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 要自动生成的表 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<table
tableName=
"tb"
>
<generatedKey
column=
"id"
sqlStatement=
"MySql"
identity=
"true"
/>
<columnOverride
column=
"field1"
property=
"tsF1"
/>
</table>
</context>
</generatorConfiguration>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment