Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fill-system
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖旭伟
fill-system
Commits
56287fc9
Commit
56287fc9
authored
Apr 24, 2025
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加新的菜单权限模块
parent
59d6541f
Pipeline
#2946
failed with stages
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
174 additions
and
86 deletions
+174
-86
fill-manager/src/main/java/com/mortals/xhx/common/code/MethodNameEnum.java
...main/java/com/mortals/xhx/common/code/MethodNameEnum.java
+73
-0
fill-manager/src/main/java/com/mortals/xhx/common/utils/ControllerScanUtil.java
...java/com/mortals/xhx/common/utils/ControllerScanUtil.java
+90
-86
fill-manager/src/main/java/com/mortals/xhx/daemon/applicationservice/DemoStartedService.java
...als/xhx/daemon/applicationservice/DemoStartedService.java
+11
-0
No files found.
fill-manager/src/main/java/com/mortals/xhx/common/code/MethodNameEnum.java
0 → 100644
View file @
56287fc9
package
com.mortals.xhx.common.code
;
import
java.util.LinkedHashMap
;
import
java.util.Map
;
/**
* 方法name path枚举类
*
* @author zxfei
*/
public
enum
MethodNameEnum
{
list
(
"list"
,
"列表"
),
delete
(
"delete"
,
"删除"
),
logicDelete
(
"logicDelete"
,
"逻辑删除"
),
saveOrUpdate
(
"save"
,
"保存更新"
),
batchSave
(
"batchSave"
,
"批量保存更新"
),
info
(
"info"
,
"详细"
),
exportExcel
(
"exportExcel"
,
"导出excel"
),
importData
(
"importData"
,
"导入excel"
),
downloadTemplate
(
"downloadTemplate"
,
"下载模板"
),
view
(
"view"
,
"详情"
);
private
String
value
;
private
String
desc
;
MethodNameEnum
(
String
value
,
String
desc
)
{
this
.
value
=
value
;
this
.
desc
=
desc
;
}
public
String
getValue
()
{
return
this
.
value
;
}
public
String
getDesc
()
{
return
this
.
desc
;
}
public
static
MethodNameEnum
getByValue
(
String
value
)
{
for
(
MethodNameEnum
wySigninEnum
:
MethodNameEnum
.
values
())
{
if
(
wySigninEnum
.
getValue
()
==
value
)
{
return
wySigninEnum
;
}
}
return
null
;
}
/**
* 获取Map集合
*
* @param eItem 不包含项
* @return
*/
public
static
Map
<
String
,
String
>
getEnumMap
(
String
...
eItem
)
{
Map
<
String
,
String
>
resultMap
=
new
LinkedHashMap
<>();
for
(
MethodNameEnum
item
:
MethodNameEnum
.
values
())
{
try
{
boolean
hasE
=
false
;
for
(
String
e
:
eItem
)
{
if
(
item
.
getValue
()
==
e
)
{
hasE
=
true
;
break
;
}
}
if
(!
hasE
)
{
resultMap
.
put
(
item
.
getValue
()
+
""
,
item
.
getDesc
());
}
}
catch
(
Exception
ex
)
{
}
}
return
resultMap
;
}
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/common/utils/ControllerScanUtil.java
View file @
56287fc9
This diff is collapsed.
Click to expand it.
fill-manager/src/main/java/com/mortals/xhx/daemon/applicationservice/DemoStartedService.java
View file @
56287fc9
package
com.mortals.xhx.daemon.applicationservice
;
import
com.mortals.framework.springcloud.service.IApplicationStartedService
;
import
com.mortals.xhx.base.system.resource.service.ResourceService
;
import
com.mortals.xhx.base.system.user.service.UserService
;
import
com.mortals.xhx.module.device.service.DeviceService
;
import
com.mortals.xhx.module.skin.service.SkinService
;
...
...
@@ -19,6 +20,9 @@ public class DemoStartedService implements IApplicationStartedService {
@Autowired
private
SkinService
skinService
;
@Autowired
private
ResourceService
resourceService
;
@Override
public
void
start
()
{
log
.
info
(
"开始服务..[配置已加载完成,并且所有框架都已经初始化]"
);
...
...
@@ -36,6 +40,13 @@ public class DemoStartedService implements IApplicationStartedService {
log
.
info
(
"开始同步用户!"
);
userService
.
refreshUser
();
log
.
info
(
"结束同步用户!"
);
try
{
resourceService
.
refreshResourceUrl
(
"com.mortals.xhx"
,
null
);
}
catch
(
Exception
e
)
{
log
.
error
(
"刷新资源失败"
,
e
);
}
}
@Override
...
...
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