Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Q
quick_generator
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
Lv xiang
quick_generator
Commits
3cb36c43
Commit
3cb36c43
authored
Jun 13, 2018
by
xxlv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix template
parent
5c4cb6c1
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
76 additions
and
29 deletions
+76
-29
workspace.xml
.idea/workspace.xml
+0
-0
gen.py
gen.py
+59
-17
${PLACE}.java
template/${PLACE}.java
+1
-1
${PLACE}BizImpl.java
template/${PLACE}BizImpl.java
+4
-1
${PLACE}Facade.java
template/${PLACE}Facade.java
+2
-2
${PLACE}FacadeImpl.java
template/${PLACE}FacadeImpl.java
+8
-7
${PLACE}Mapper.xml
template/${PLACE}Mapper.xml
+2
-1
No files found.
.idea/workspace.xml
View file @
3cb36c43
This diff is collapsed.
Click to expand it.
gen.py
View file @
3cb36c43
...
@@ -130,6 +130,8 @@ def is_po(res_name, identity):
...
@@ -130,6 +130,8 @@ def is_po(res_name, identity):
:param identity:
:param identity:
:return:
:return:
"""
"""
res_name
=
res_name
[
0
]
.
upper
()
+
res_name
[
1
:]
print
(
"检测po {} {}"
.
format
(
res_name
,
identity
.
split
(
"/"
)[
-
1
]))
print
(
"检测po {} {}"
.
format
(
res_name
,
identity
.
split
(
"/"
)[
-
1
]))
return
"{}.java"
.
format
(
res_name
)
==
identity
.
split
(
"/"
)[
-
1
]
return
"{}.java"
.
format
(
res_name
)
==
identity
.
split
(
"/"
)[
-
1
]
...
@@ -158,14 +160,20 @@ def config_mybatis(res_name, table_name, mybatis_config_path):
...
@@ -158,14 +160,20 @@ def config_mybatis(res_name, table_name, mybatis_config_path):
enableDeleteByExample
=
"false"
,
enableSelectByExample
=
"false"
,
enableUpdateByExample
=
"false"
,
enableDeleteByExample
=
"false"
,
enableSelectByExample
=
"false"
,
enableUpdateByExample
=
"false"
,
selectByExampleQueryId
=
"false"
)
selectByExampleQueryId
=
"false"
)
classPathEntry
=
ET
.
Element
(
"classPathEntry"
,
location
=
"{}/mysql-connector-java-5.1.25.jar"
.
format
(
JAR_PATH
))
context
=
root
.
find
(
"context"
)
context
=
root
.
find
(
"context"
)
root
.
getroot
()
.
insert
(
0
,
classPathEntry
)
context
.
append
(
e
)
context
.
append
(
e
)
po_path
=
context
.
find
(
"javaModelGenerator"
)
.
get
(
"targetPackage"
)
po_path
=
context
.
find
(
"javaModelGenerator"
)
.
get
(
"targetPackage"
)
java_model_generator
=
context
.
find
(
"javaModelGenerator"
)
java_model_generator
=
context
.
find
(
"javaModelGenerator"
)
java_model_generator
.
set
(
"targetProject"
,
"{}/java/"
.
format
(
TMP
))
java_model_generator
.
set
(
"targetProject"
,
"{}/java/"
.
format
(
TMP
))
tmp_mybatis_path
=
os
.
path
.
join
(
TMP
,
"generatorConfig.xml"
)
tmp_mybatis_path
=
os
.
path
.
join
(
TMP
,
"generatorConfig.xml"
)
root
.
write
(
tmp_mybatis_path
,
encoding
=
"utf-8"
)
root
.
write
(
tmp_mybatis_path
,
encoding
=
"utf-8"
)
with
open
(
tmp_mybatis_path
,
"r+"
)
as
f
:
with
open
(
tmp_mybatis_path
,
"r+"
)
as
f
:
...
@@ -209,7 +217,13 @@ def gen_po(res_name, project_target_path):
...
@@ -209,7 +217,13 @@ def gen_po(res_name, project_target_path):
print
(
"----------------------------------------"
)
print
(
"----------------------------------------"
)
os
.
system
(
gen_po_cmd
)
os
.
system
(
gen_po_cmd
)
with
open
(
"{}/{}.java"
.
format
(
po_path
,
res_name
),
"r+"
)
as
f
:
mybatis_gen_po_path
=
"{}/{}.java"
.
format
(
po_path
,
res_name
)
if
(
not
os
.
path
.
exists
(
mybatis_gen_po_path
)):
print
(
"无法获取到Mybatis 生成的po文件"
)
exit
(
-
1
)
with
open
(
mybatis_gen_po_path
,
"r+"
)
as
f
:
po
=
f
.
read
()
po
=
f
.
read
()
return
po
return
po
...
@@ -226,6 +240,8 @@ def compile_content(res_name, compile_table, origin, tmp, project_target_path):
...
@@ -226,6 +240,8 @@ def compile_content(res_name, compile_table, origin, tmp, project_target_path):
:param project_target_path:
:param project_target_path:
:return:
:return:
"""
"""
res_name
=
get_res_name
(
res_name
)
if
not
os
.
path
.
isdir
(
tmp
):
if
not
os
.
path
.
isdir
(
tmp
):
os
.
mkdir
(
tmp
)
os
.
mkdir
(
tmp
)
...
@@ -241,6 +257,7 @@ def compile_content(res_name, compile_table, origin, tmp, project_target_path):
...
@@ -241,6 +257,7 @@ def compile_content(res_name, compile_table, origin, tmp, project_target_path):
# 检测如果当前的文件是PO的话,使用mybatis 生成po
# 检测如果当前的文件是PO的话,使用mybatis 生成po
if
is_po
(
res_name
,
identity
):
if
is_po
(
res_name
,
identity
):
print
(
"发现po {}"
.
format
(
identity
))
print
(
"发现po {}"
.
format
(
identity
))
with
open
(
identity
,
"w+"
)
as
f
:
with
open
(
identity
,
"w+"
)
as
f
:
f
.
write
(
gen_po
(
res_name
,
project_target_path
))
f
.
write
(
gen_po
(
res_name
,
project_target_path
))
...
@@ -281,22 +298,47 @@ def clean_tmp():
...
@@ -281,22 +298,47 @@ def clean_tmp():
def
get_res_name
(
res_name
):
def
get_res_name
(
res_name
):
# TODO
# 转化为驼峰
pass
name
=
underline2hump
(
res_name
)
return
name
[
0
]
.
upper
()
+
name
[
1
:]
def
hump2underline
(
hunp_str
):
'''
驼峰形式字符串转成下划线形式
:param hunp_str: 驼峰形式字符串
:return: 字母全小写的下划线形式字符串
'''
# 匹配正则,匹配小写字母和大写字母的分界位置
p
=
re
.
compile
(
r'([a-z]|\d)([A-Z])'
)
# 这里第二个参数使用了正则分组的后向引用
sub
=
re
.
sub
(
p
,
r'\1_\2'
,
hunp_str
)
.
lower
()
return
sub
def
underline2hump
(
underline_str
):
'''
下划线形式字符串转成驼峰形式
:param underline_str: 下划线形式字符串
:return: 驼峰形式字符串
'''
# 这里re.sub()函数第二个替换参数用到了一个匿名回调函数,回调函数的参数x为一个匹配对象,返回值为一个处理后的字符串
sub
=
re
.
sub
(
r'(_\w)'
,
lambda
x
:
x
.
group
(
1
)[
1
]
.
upper
(),
underline_str
)
return
sub
def
get_table_name
(
res_name
):
def
get_table_name
(
res_name
):
table_name
=
""
res_name
=
res_name
[
0
:
1
]
.
lower
()
+
res_name
[
1
:]
for
i
in
range
(
0
,
len
(
res_name
)):
t
=
res_name
[
i
]
if
(
t
.
isupper
()):
t
=
""
.
join
([
"_"
,
t
.
lower
()])
table_name
=
""
.
join
([
table_name
,
t
])
return
table_name
return
hump2underline
(
res_name
)
#
# table_name = ""
# res_name = res_name[0:1].lower() + res_name[1:]
#
# for i in range(0, len(res_name)):
# t = res_name[i]
# if (t.isupper()):
# t = "".join(["_", t.lower()])
# table_name = "".join([table_name, t])
#
# return table_name
def
gen
(
res_name
,
look_path
):
def
gen
(
res_name
,
look_path
):
...
@@ -329,6 +371,7 @@ def gen(res_name, look_path):
...
@@ -329,6 +371,7 @@ def gen(res_name, look_path):
intf
=
PROJECT_TARGET_PATH
[
"intf_po_path"
]
intf
=
PROJECT_TARGET_PATH
[
"intf_po_path"
]
# 检索包名
p
=
re
.
compile
(
"[
\
s
\
S]*
\
/(.+)
\
-intf
\
/[
\
s
\
S]*"
)
p
=
re
.
compile
(
"[
\
s
\
S]*
\
/(.+)
\
-intf
\
/[
\
s
\
S]*"
)
matches
=
re
.
match
(
p
,
intf
)
matches
=
re
.
match
(
p
,
intf
)
...
@@ -368,18 +411,17 @@ def gen(res_name, look_path):
...
@@ -368,18 +411,17 @@ def gen(res_name, look_path):
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
print
(
"-------------------------"
)
print
(
"-------------------------"
)
print
(
"Start Building your Resource"
)
print
(
"Start Building your Resource"
)
print
(
"Draw by ghost "
)
print
(
"Draw by ghost "
)
print
(
"-------------------------"
)
print
(
"-------------------------"
)
parser
=
argparse
.
ArgumentParser
(
description
=
"Auto create Resource for ydl java project"
)
parser
=
argparse
.
ArgumentParser
(
description
=
"Auto create Resource for ydl java project"
)
parser
.
add_argument
(
'--verbose'
,
'-v'
,
action
=
'store_true'
,
help
=
'debug mode'
)
parser
.
add_argument
(
"resource_name"
)
parser
.
add_argument
(
"resource_name"
)
parser
.
add_argument
(
"project_path"
)
parser
.
add_argument
(
"project_path"
)
args
=
parser
.
parse_args
()
args
=
parser
.
parse_args
()
project_path
=
args
.
project_path
project_path
=
args
.
project_path
resource_name
=
args
.
resource_name
resource_name
=
args
.
resource_name
gen
(
resource_name
,
project_path
)
gen
(
resource_name
,
project_path
)
template/${PLACE}.java
View file @
3cb36c43
package
com
.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL
1
}.
intf
.
po
;
package
com
.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL
2
}.
intf
.
po
;
public
class
${
PLACE
}
{
public
class
${
PLACE
}
{
...
...
template/${PLACE}BizImpl.java
View file @
3cb36c43
...
@@ -15,5 +15,8 @@ public class ${PLACE}BizImpl extends BaseService<${PLACE}> implements ${PLACE}Bi
...
@@ -15,5 +15,8 @@ public class ${PLACE}BizImpl extends BaseService<${PLACE}> implements ${PLACE}Bi
@Resource
@Resource
private
$
{
PLACE
}
Mapper
$
{
PLACE_VAR
}
Mapper
;
private
$
{
PLACE
}
Mapper
$
{
PLACE_VAR
}
Mapper
;
@Override
public
$
{
PLACE
}
create
$
{
PLACE
}(
$
{
PLACE
}
$
{
PLACE_VAR
})
{
return
null
;
}
}
}
template/${PLACE}Facade.java
View file @
3cb36c43
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
package
com
.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
intf
.
facade
;
package
com
.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
intf
.
facade
;
import
com.
$
{
PACKAGE_LEVEL1
}.
common
.
dto
.
BaseDtoResponse
;
import
com.
$
{
PACKAGE_LEVEL1
}.
common
.
dto
.
BaseDtoResponse
;
import
com.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
intf
.
dto
.
request
.{
PLACE
}
ReqDto
;
import
com.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
intf
.
dto
.
request
.
$
{
PLACE
}
ReqDto
;
import
com.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
intf
.
dto
.
response
.{
PLACE
}
RespDto
;
import
com.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
intf
.
dto
.
response
.
$
{
PLACE
}
RespDto
;
public
interface
${
PLACE
}
Facade
{
public
interface
${
PLACE
}
Facade
{
BaseDtoResponse
<
$
{
PLACE
}
RespDto
>
create
$
{
PLACE
}(
$
{
PLACE
}
ReqDto
$
{
PLACE_VAR
}
ReqDto
);
BaseDtoResponse
<
$
{
PLACE
}
RespDto
>
create
$
{
PLACE
}(
$
{
PLACE
}
ReqDto
$
{
PLACE_VAR
}
ReqDto
);
...
...
template/${PLACE}FacadeImpl.java
View file @
3cb36c43
package
com
.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
service
.
facade
;
package
com
.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
service
.
facade
;
import
com.
$
{
PACKAGE_LEVEL1
}.
common
.
dto
.
BaseDtoResponse
;
import
com.ydl.common.dto.BaseDtoResponse
;
import
com.
$
{
PACKAGE_LEVEL1
}.
common
.
helper
.
ResponseFormatterHelper
;
import
com.ydl.common.helper.ResponseFormatterHelper
;
import
com.
$
{
PACKAGE_LEVEL1
}.
common
.
utils
.
ModelMapperUtil
;
import
com.ydl.common.utils.ModelMapperUtil
;
import
com.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
intf
.
facade
.
$
{
PLACE
}
Facade
;
import
com.ydl.user.intf.dto.request.
$
{
PLACE
}
ReqDto
;
import
com.
$
{
PACKAGE_LEVEL1
}.
$
{
PACKAGE_LEVEL2
}.
service
.
biz
.
$
{
PLACE
}
Biz
;
import
com.ydl.user.intf.dto.response.
$
{
PLACE
}
RespDto
;
import
com.ydl.user.intf.facade.
$
{
PLACE
}
Facade
;
import
com.ydl.user.service.biz.
$
{
PLACE
}
Biz
;
import
com.ydl.user.intf.po.
$
{
PLACE
};
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
javax.annotation.Resource
;
import
javax.annotation.Resource
;
...
@@ -20,9 +23,7 @@ public class ${PLACE}FacadeImpl implements ${PLACE}Facade {
...
@@ -20,9 +23,7 @@ public class ${PLACE}FacadeImpl implements ${PLACE}Facade {
public
BaseDtoResponse
<
$
{
PLACE
}
RespDto
>
create
$
{
PLACE
}(
$
{
PLACE
}
ReqDto
$
{
PLACE_VAR
}
ReqDto
)
{
public
BaseDtoResponse
<
$
{
PLACE
}
RespDto
>
create
$
{
PLACE
}(
$
{
PLACE
}
ReqDto
$
{
PLACE_VAR
}
ReqDto
)
{
$
{
PLACE
}
$
{
PLACE_VAR
}=
ModelMapperUtil
.
strictMap
(
$
{
PLACE_VAR
}
ReqDto
,
$
{
PLACE
}.
class
);
$
{
PLACE
}
$
{
PLACE_VAR
}=
ModelMapperUtil
.
strictMap
(
$
{
PLACE_VAR
}
ReqDto
,
$
{
PLACE
}.
class
);
$
{
PLACE
}
$
{
PLACE_VAR
}
Stored
=
$
{
PLACE_VAR
}
Biz
.
create
$
{
PLACE
}(
$
{
PLACE_VAR
});
$
{
PLACE
}
$
{
PLACE_VAR
}
Stored
=
$
{
PLACE_VAR
}
Biz
.
create
$
{
PLACE
}(
$
{
PLACE_VAR
});
$
{
PLACE
}
RespDto
$
{
PLACE_VAR
}
RespDto
=
ModelMapperUtil
.
strictMap
(
$
{
PLACE_VAR
}
Stored
,
$
{
PLACE
}
RespDto
.
class
);
$
{
PLACE
}
RespDto
$
{
PLACE_VAR
}
RespDto
=
ModelMapperUtil
.
strictMap
(
$
{
PLACE_VAR
}
Stored
,
$
{
PLACE
}
RespDto
.
class
);
return
ResponseFormatterHelper
.
success
(
$
{
PLACE_VAR
}
RespDto
);
return
ResponseFormatterHelper
.
success
(
$
{
PLACE_VAR
}
RespDto
);
...
...
template/${PLACE}Mapper.xml
View file @
3cb36c43
<?xml version="1.0" encoding="UTF-8" ?>
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.
ydl.user
.service.dao.${PLACE}Mapper"
>
<mapper
namespace=
"com.
${PACKAGE_LEVEL1}.${PACKAGE_LEVEL2}
.service.dao.${PLACE}Mapper"
>
</mapper>
</mapper>
\ 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