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
d5239892
Commit
d5239892
authored
May 16, 2018
by
hewei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[issues#26][issues#27]:插件因为是复用的,需要进行属性的清空。
parent
50b139f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
17 deletions
+13
-17
src/main/java/com/itfsw/mybatis/generator/plugins/SelectSelectivePlugin.java
...tfsw/mybatis/generator/plugins/SelectSelectivePlugin.java
+13
-17
No files found.
src/main/java/com/itfsw/mybatis/generator/plugins/SelectSelectivePlugin.java
View file @
d5239892
...
@@ -43,7 +43,6 @@ public class SelectSelectivePlugin extends BasePlugin implements ISelectOneByExa
...
@@ -43,7 +43,6 @@ public class SelectSelectivePlugin extends BasePlugin implements ISelectOneByExa
public
static
final
String
ID_FOR_PROPERTY_BASED_RESULT_MAP
=
"BasePropertyResultMap"
;
public
static
final
String
ID_FOR_PROPERTY_BASED_RESULT_MAP
=
"BasePropertyResultMap"
;
private
XmlElement
selectByExampleSelectiveEle
;
private
XmlElement
selectByExampleSelectiveEle
;
private
XmlElement
selectByPrimaryKeySelectiveEle
;
private
XmlElement
selectByPrimaryKeySelectiveEle
;
private
XmlElement
basePropertyResultMapEle
;
/**
/**
* 具体执行顺序 http://www.mybatis.org/generator/reference/pluggingIn.html
* 具体执行顺序 http://www.mybatis.org/generator/reference/pluggingIn.html
...
@@ -73,7 +72,6 @@ public class SelectSelectivePlugin extends BasePlugin implements ISelectOneByExa
...
@@ -73,7 +72,6 @@ public class SelectSelectivePlugin extends BasePlugin implements ISelectOneByExa
// bug:26,27
// bug:26,27
this
.
selectByExampleSelectiveEle
=
null
;
this
.
selectByExampleSelectiveEle
=
null
;
this
.
selectByPrimaryKeySelectiveEle
=
null
;
this
.
selectByPrimaryKeySelectiveEle
=
null
;
this
.
basePropertyResultMapEle
=
null
;
}
}
// =========================================== client 方法生成 ===================================================
// =========================================== client 方法生成 ===================================================
...
@@ -163,8 +161,19 @@ public class SelectSelectivePlugin extends BasePlugin implements ISelectOneByExa
...
@@ -163,8 +161,19 @@ public class SelectSelectivePlugin extends BasePlugin implements ISelectOneByExa
@Override
@Override
public
boolean
sqlMapDocumentGenerated
(
Document
document
,
IntrospectedTable
introspectedTable
)
{
public
boolean
sqlMapDocumentGenerated
(
Document
document
,
IntrospectedTable
introspectedTable
)
{
// issues#16
// issues#16
if
(
this
.
basePropertyResultMapEle
!=
null
)
{
if
(
introspectedTable
.
isConstructorBased
())
{
document
.
getRootElement
().
addElement
(
0
,
this
.
basePropertyResultMapEle
);
XmlElement
resultMapEle
=
new
XmlElement
(
"resultMap"
);
resultMapEle
.
addAttribute
(
new
Attribute
(
"id"
,
ID_FOR_PROPERTY_BASED_RESULT_MAP
));
resultMapEle
.
addAttribute
(
new
Attribute
(
"type"
,
introspectedTable
.
getRules
().
calculateAllFieldsClass
().
getFullyQualifiedName
()));
commentGenerator
.
addComment
(
resultMapEle
);
for
(
IntrospectedColumn
introspectedColumn
:
introspectedTable
.
getPrimaryKeyColumns
())
{
resultMapEle
.
addElement
(
XmlElementGeneratorTools
.
generateResultMapResultElement
(
"id"
,
introspectedColumn
));
}
for
(
IntrospectedColumn
introspectedColumn
:
introspectedTable
.
getNonPrimaryKeyColumns
())
{
resultMapEle
.
addElement
(
XmlElementGeneratorTools
.
generateResultMapResultElement
(
"result"
,
introspectedColumn
));
}
document
.
getRootElement
().
addElement
(
0
,
resultMapEle
);
}
}
// 1. selectByExampleSelective 方法
// 1. selectByExampleSelective 方法
...
@@ -243,19 +252,6 @@ public class SelectSelectivePlugin extends BasePlugin implements ISelectOneByExa
...
@@ -243,19 +252,6 @@ public class SelectSelectivePlugin extends BasePlugin implements ISelectOneByExa
selectSelectiveEle
.
addAttribute
(
new
Attribute
(
"id"
,
id
));
selectSelectiveEle
.
addAttribute
(
new
Attribute
(
"id"
,
id
));
// issues#16
// issues#16
if
(
introspectedTable
.
isConstructorBased
())
{
if
(
introspectedTable
.
isConstructorBased
())
{
XmlElement
resultMapEle
=
new
XmlElement
(
"resultMap"
);
resultMapEle
.
addAttribute
(
new
Attribute
(
"id"
,
ID_FOR_PROPERTY_BASED_RESULT_MAP
));
resultMapEle
.
addAttribute
(
new
Attribute
(
"type"
,
introspectedTable
.
getRules
().
calculateAllFieldsClass
().
getFullyQualifiedName
()));
commentGenerator
.
addComment
(
resultMapEle
);
for
(
IntrospectedColumn
introspectedColumn
:
introspectedTable
.
getPrimaryKeyColumns
())
{
resultMapEle
.
addElement
(
XmlElementGeneratorTools
.
generateResultMapResultElement
(
"id"
,
introspectedColumn
));
}
for
(
IntrospectedColumn
introspectedColumn
:
introspectedTable
.
getNonPrimaryKeyColumns
())
{
resultMapEle
.
addElement
(
XmlElementGeneratorTools
.
generateResultMapResultElement
(
"result"
,
introspectedColumn
));
}
this
.
basePropertyResultMapEle
=
resultMapEle
;
selectSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
ID_FOR_PROPERTY_BASED_RESULT_MAP
));
selectSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
ID_FOR_PROPERTY_BASED_RESULT_MAP
));
}
else
if
(
introspectedTable
.
hasBLOBColumns
())
{
}
else
if
(
introspectedTable
.
hasBLOBColumns
())
{
selectSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
introspectedTable
.
getResultMapWithBLOBsId
()));
selectSelectiveEle
.
addAttribute
(
new
Attribute
(
"resultMap"
,
introspectedTable
.
getResultMapWithBLOBsId
()));
...
...
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