Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
cms_sys
Project
Project
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
西魏
cms_sys
Commits
851c2744
Commit
851c2744
authored
Jun 17, 2020
by
shanggjj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
生成的栏目名为拼音
parent
dd1c671c
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
98 additions
and
20 deletions
+98
-20
CategoryAction.java
src/main/java/net/mingsoft/cms/action/CategoryAction.java
+15
-0
CategoryBizImpl.java
src/main/java/net/mingsoft/cms/biz/impl/CategoryBizImpl.java
+29
-20
ICategoryDao.xml
src/main/java/net/mingsoft/cms/dao/ICategoryDao.xml
+6
-0
CategoryEntity.java
src/main/java/net/mingsoft/cms/entity/CategoryEntity.java
+12
-0
PinYinUtil.java
src/main/java/net/mingsoft/cms/util/PinYinUtil.java
+36
-0
No files found.
src/main/java/net/mingsoft/cms/action/CategoryAction.java
View file @
851c2744
package
net
.
mingsoft
.
cms
.
action
;
import
com.github.stuxuhai.jpinyin.PinyinFormat
;
import
com.github.stuxuhai.jpinyin.PinyinHelper
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiImplicitParam
;
import
io.swagger.annotations.ApiImplicitParams
;
...
...
@@ -13,6 +15,7 @@ import net.mingsoft.basic.util.BasicUtil;
import
net.mingsoft.basic.util.StringUtil
;
import
net.mingsoft.cms.biz.ICategoryBiz
;
import
net.mingsoft.cms.entity.CategoryEntity
;
import
net.mingsoft.cms.util.PinYinUtil
;
import
org.apache.shiro.authz.annotation.RequiresPermissions
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Controller
;
...
...
@@ -171,6 +174,8 @@ public class CategoryAction extends BaseAction{
if
(!
StringUtil
.
checkLength
(
category
.
getCategoryParentId
()+
""
,
1
,
100
)){
return
ResultData
.
build
().
error
(
getResString
(
"err.length"
,
this
.
getResString
(
"category.parent.id"
),
"1"
,
"100"
));
}
//获取拼音
category
.
setAppId
(
BasicUtil
.
getAppId
());
categoryBiz
.
saveEntity
(
category
);
return
ResultData
.
build
().
success
(
category
);
...
...
@@ -242,6 +247,16 @@ public class CategoryAction extends BaseAction{
if
(!
StringUtil
.
checkLength
(
category
.
getCategoryParentId
()+
""
,
0
,
100
)){
return
ResultData
.
build
().
error
(
getResString
(
"err.length"
,
this
.
getResString
(
"category.parent.id"
),
"1"
,
"100"
));
}
String
pingYin
=
PinYinUtil
.
getPingYin
(
category
.
getCategoryTitle
());
CategoryEntity
categoryEntity
=
new
CategoryEntity
();
categoryEntity
.
setCategoryPinyin
(
pingYin
);
categoryEntity
.
setAppId
(
BasicUtil
.
getAppId
());
Object
categoryBizEntity
=
categoryBiz
.
getEntity
(
categoryEntity
);
category
.
setCategoryPinyin
(
pingYin
);
//如果存在此拼音栏目则拼接上id
if
(
categoryBizEntity
!=
null
){
category
.
setCategoryPinyin
(
pingYin
+
category
.
getId
());
}
//判断是否选择子级为所属栏目
CategoryEntity
_category
=
new
CategoryEntity
();
_category
.
setCategoryParentId
(
category
.
getId
());
...
...
src/main/java/net/mingsoft/cms/biz/impl/CategoryBizImpl.java
View file @
851c2744
...
...
@@ -23,7 +23,9 @@ package net.mingsoft.cms.biz.impl;
import
cn.hutool.core.util.ObjectUtil
;
import
net.mingsoft.base.entity.BaseEntity
;
import
net.mingsoft.basic.util.BasicUtil
;
import
net.mingsoft.cms.entity.CategoryEntity
;
import
net.mingsoft.cms.util.PinYinUtil
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
...
...
@@ -64,22 +66,30 @@ public class CategoryBizImpl extends BaseBizImpl implements ICategoryBiz {
@Override
public
void
saveEntity
(
CategoryEntity
categoryEntity
)
{
// TODO Auto-generated method stub
String
pingYin
=
PinYinUtil
.
getPingYin
(
categoryEntity
.
getCategoryTitle
());
CategoryEntity
category
=
new
CategoryEntity
();
category
.
setCategoryPinyin
(
pingYin
);
category
.
setAppId
(
BasicUtil
.
getAppId
());
Object
categoryBizEntity
=
getEntity
(
category
);
setParentId
(
categoryEntity
);
categoryEntity
.
setCategoryPinyin
(
pingYin
);
super
.
saveEntity
(
categoryEntity
);
//保存链接地址
String
path
=
ObjectUtil
.
isNotNull
(
categoryEntity
.
getCategoryParentId
())?
categoryEntity
.
getCategoryParentId
():
""
;
//判断是否有parentIds
if
(
StringUtils
.
isNotBlank
(
path
)){
categoryEntity
.
setCategoryPath
(
"/"
+
path
.
replaceAll
(
","
,
"/"
)
+
"/"
+
categoryEntity
.
getId
());
}
else
{
categoryEntity
.
setCategoryPath
(
"/"
+
categoryEntity
.
getId
());
//拼音存在则拼接id
if
(
categoryBizEntity
!=
null
){
categoryEntity
.
setCategoryPinyin
(
pingYin
+
categoryEntity
.
getId
());
}
CategoryEntity
parentCategory
=
(
CategoryEntity
)
categoryDao
.
getEntity
(
Integer
.
parseInt
(
categoryEntity
.
getCategoryId
()));
//保存链接地址
String
path
=
ObjectUtil
.
isNotNull
(
parentCategory
)?
categoryEntity
.
getCategoryPath
():
""
;
categoryEntity
.
setCategoryPath
(
path
+
"/"
+
categoryEntity
.
getCategoryPinyin
());
super
.
updateEntity
(
categoryEntity
);
}
private
void
setParentId
(
CategoryEntity
categoryEntity
)
{
String
path
=
""
;
if
(
StringUtils
.
isNotEmpty
(
categoryEntity
.
getCategoryId
())&&
Integer
.
parseInt
(
categoryEntity
.
getCategoryId
())>
0
)
{
CategoryEntity
category
=
(
CategoryEntity
)
categoryDao
.
getEntity
(
Integer
.
parseInt
(
categoryEntity
.
getCategoryId
()));
path
=
category
.
getCategoryPath
();
if
(
StringUtils
.
isEmpty
(
category
.
getCategoryParentId
()))
{
categoryEntity
.
setCategoryParentId
(
category
.
getId
());
}
else
{
...
...
@@ -90,13 +100,7 @@ public class CategoryBizImpl extends BaseBizImpl implements ICategoryBiz {
}
//保存时先保存再修改链接地址,修改时直接修改
if
(
StringUtils
.
isNotBlank
(
categoryEntity
.
getId
()))
{
String
path
=
ObjectUtil
.
isNotNull
(
categoryEntity
.
getCategoryParentId
())
?
categoryEntity
.
getCategoryParentId
()
:
""
;
//判断是否有parentIds
if
(
StringUtils
.
isNotBlank
(
path
)){
categoryEntity
.
setCategoryPath
(
"/"
+
path
.
replaceAll
(
","
,
"/"
)
+
"/"
+
categoryEntity
.
getId
());
}
else
{
categoryEntity
.
setCategoryPath
(
"/"
+
categoryEntity
.
getId
());
}
categoryEntity
.
setCategoryPath
(
path
+
"/"
+
categoryEntity
.
getCategoryPinyin
());
}
}
...
...
@@ -110,13 +114,9 @@ public class CategoryBizImpl extends BaseBizImpl implements ICategoryBiz {
}
else
{
x
.
setCategoryParentId
(
categoryEntity
.
getCategoryParentId
()+
","
+
categoryEntity
.
getId
());
}
String
path
=
ObjectUtil
.
isNotNull
(
x
.
getCategoryParentId
())?
x
.
getCategoryParentId
():
""
;
String
path
=
categoryEntity
.
getCategoryPath
()
;
//判断是否有parentIds
if
(
StringUtils
.
isNotBlank
(
path
)){
x
.
setCategoryPath
(
"/"
+
path
.
replaceAll
(
","
,
"/"
)+
"/"
+
x
.
getId
());
}
else
{
x
.
setCategoryPath
(
"/"
+
x
.
getId
());
}
x
.
setCategoryPath
(
path
+
"/"
+
x
.
getCategoryPinyin
());
super
.
updateEntity
(
x
);
setChildParentId
(
x
);
});
...
...
@@ -125,6 +125,15 @@ public class CategoryBizImpl extends BaseBizImpl implements ICategoryBiz {
@Override
public
void
updateEntity
(
CategoryEntity
entity
)
{
setParentId
(
entity
);
String
pingYin
=
PinYinUtil
.
getPingYin
(
entity
.
getCategoryTitle
());
CategoryEntity
category
=
new
CategoryEntity
();
category
.
setCategoryPinyin
(
pingYin
);
category
.
setAppId
(
BasicUtil
.
getAppId
());
CategoryEntity
categoryBizEntity
=
(
CategoryEntity
)
getEntity
(
category
);
//拼音存在则拼接id
if
(
categoryBizEntity
!=
null
&&!
categoryBizEntity
.
getId
().
equals
(
entity
.
getId
())){
entity
.
setCategoryPinyin
(
pingYin
+
entity
.
getId
());
}
super
.
updateEntity
(
entity
);
setChildParentId
(
entity
);
}
...
...
src/main/java/net/mingsoft/cms/dao/ICategoryDao.xml
View file @
851c2744
...
...
@@ -5,6 +5,7 @@
<resultMap
id=
"resultMap"
type=
"net.mingsoft.cms.entity.CategoryEntity"
>
<id
column=
"id"
property=
"id"
/>
<!--编号 -->
<result
column=
"category_title"
property=
"categoryTitle"
/>
<!--栏目管理名称 -->
<result
column=
"category_pinyin"
property=
"categoryPinyin"
/>
<!--栏目管理名称 -->
<result
column=
"category_id"
property=
"categoryId"
/>
<!--所属栏目 -->
<result
column=
"category_type"
property=
"categoryType"
/>
<!--栏目管理属性 -->
<result
column=
"category_sort"
property=
"categorySort"
/>
<!--自定义顺序 -->
...
...
@@ -35,6 +36,7 @@
insert into cms_category
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"categoryTitle != null and categoryTitle != ''"
>
category_title,
</if>
<if
test=
"categoryPinyin != null and categoryPinyin != ''"
>
category_pinyin,
</if>
<if
test=
"categoryId != null and categoryId != ''"
>
category_id,
</if>
<if
test=
"categoryType != null and categoryType != ''"
>
category_type,
</if>
<if
test=
"categorySort != null"
>
category_sort,
</if>
...
...
@@ -60,6 +62,7 @@
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"categoryTitle != null and categoryTitle != ''"
>
#{categoryTitle},
</if>
<if
test=
"categoryPinyin != null and categoryPinyin != ''"
>
#{categoryPinyin},
</if>
<if
test=
"categoryId != null and categoryId != ''"
>
#{categoryId},
</if>
<if
test=
"categoryType != null and categoryType != ''"
>
#{categoryType},
</if>
<if
test=
"categorySort != null"
>
#{categorySort},
</if>
...
...
@@ -90,6 +93,7 @@
update cms_category
<set>
<if
test=
"categoryTitle != null and categoryTitle != ''"
>
category_title=#{categoryTitle},
</if>
<if
test=
"categoryPinyin != null and categoryPinyin != ''"
>
category_pinyin=#{categoryPinyin},
</if>
category_id=#{categoryId},
category_parent_id=#{categoryParentId},
<if
test=
"categoryType != null and categoryType != ''"
>
category_type=#{categoryType},
</if>
...
...
@@ -126,6 +130,7 @@
select * from cms_category
<where>
<if
test=
"categoryTitle != null and categoryTitle != ''"
>
and category_title=#{categoryTitle}
</if>
<if
test=
"categoryPinyin != null and categoryPinyin != ''"
>
and category_pinyin=#{categoryPinyin}
</if>
<if
test=
"categoryId != null and categoryId != ''"
>
and category_id=#{categoryId}
</if>
<if
test=
"categoryType != null and categoryType != ''"
>
and category_type=#{categoryType}
</if>
<if
test=
"categorySort != null"
>
and category_sort=#{categorySort}
</if>
...
...
@@ -210,6 +215,7 @@
select * from cms_category
<where>
<if
test=
"categoryTitle != null and categoryTitle != ''"
>
and category_title=#{categoryTitle}
</if>
<if
test=
"categoryPinyin != null and categoryPinyin != ''"
>
and category_pinyin=#{categoryPinyin}
</if>
<if
test=
"categoryId != null and categoryId != ''"
>
and category_id=#{categoryId}
</if>
<if
test=
"categoryType != null and categoryType != ''"
>
and category_type=#{categoryType}
</if>
<if
test=
"categorySort != null"
>
and category_sort=#{categorySort}
</if>
...
...
src/main/java/net/mingsoft/cms/entity/CategoryEntity.java
View file @
851c2744
...
...
@@ -20,6 +20,10 @@ private static final long serialVersionUID = 1574925152750L;
*/
private
String
categoryTitle
;
/**
* 栏目别名
*/
private
String
categoryPinyin
;
/**
* 所属栏目
*/
private
String
categoryId
;
...
...
@@ -112,6 +116,14 @@ private static final long serialVersionUID = 1574925152750L;
this
.
categoryId
=
categoryId
;
}
public
String
getCategoryPinyin
()
{
return
categoryPinyin
;
}
public
void
setCategoryPinyin
(
String
categoryPinyin
)
{
this
.
categoryPinyin
=
categoryPinyin
;
}
/**
* 获取所属栏目
*/
...
...
src/main/java/net/mingsoft/cms/util/PinYinUtil.java
0 → 100644
View file @
851c2744
package
net
.
mingsoft
.
cms
.
util
;
import
com.github.stuxuhai.jpinyin.PinyinException
;
import
com.github.stuxuhai.jpinyin.PinyinFormat
;
import
com.github.stuxuhai.jpinyin.PinyinHelper
;
import
org.apache.commons.lang3.StringUtils
;
/**
* @author by 铭飞开源团队
* @Description TODO
* @date 2020/6/16 14:40
*/
public
class
PinYinUtil
{
/**
* 将字符串中的中文转化为拼音,其他字符不变
*
* @param inputString
* @return
*/
public
static
String
getPingYin
(
String
inputString
)
{
if
(!
StringUtils
.
isBlank
(
inputString
))
{
try
{
return
PinyinHelper
.
convertToPinyinString
(
inputString
,
""
,
PinyinFormat
.
WITHOUT_TONE
);
}
catch
(
PinyinException
e
)
{
e
.
printStackTrace
();
}
}
return
""
;
}
public
static
void
main
(
String
[]
args
)
throws
PinyinException
{
System
.
out
.
println
(
getPingYin
(
"哈哈6666"
));
}
}
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