Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
api
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
首航-临时账号
api
Commits
682a68e2
Commit
682a68e2
authored
Apr 30, 2020
by
java-李谡
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调机修改
parent
fc0572b8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
SecurityPropertyPlaceholderConfigurer.java
src/com/ejweb/core/conf/SecurityPropertyPlaceholderConfigurer.java
+2
-2
VerifyFeedbackController.java
src/com/ejweb/modules/verify/api/VerifyFeedbackController.java
+6
-0
No files found.
src/com/ejweb/core/conf/SecurityPropertyPlaceholderConfigurer.java
View file @
682a68e2
...
@@ -79,7 +79,7 @@ public class SecurityPropertyPlaceholderConfigurer extends PropertyPlaceholderCo
...
@@ -79,7 +79,7 @@ public class SecurityPropertyPlaceholderConfigurer extends PropertyPlaceholderCo
public
static
void
main
(
String
[]
args
)
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
DES3Utils
.
encrypt
(
"foctest"
,
CONF_DESC_KEY
));
System
.
out
.
println
(
DES3Utils
.
encrypt
(
"foctest"
,
CONF_DESC_KEY
));
System
.
out
.
println
(
DES3Utils
.
decrypt
(
"
fc76fa2b2e10b3d4450d564314a97766
"
,
CONF_DESC_KEY
));
System
.
out
.
println
(
DES3Utils
.
decrypt
(
"
776b3d2f912b12f8
"
,
CONF_DESC_KEY
));
System
.
out
.
println
(
DES3Utils
.
decrypt
(
"
31a63fac8317458d81c034906825749f7c58c30a773c6927
"
,
CONF_DESC_KEY
));
System
.
out
.
println
(
DES3Utils
.
decrypt
(
"
6f2237c231b1464c6474030c906ec914
"
,
CONF_DESC_KEY
));
}
}
}
}
src/com/ejweb/modules/verify/api/VerifyFeedbackController.java
View file @
682a68e2
...
@@ -20,6 +20,7 @@ import com.ejweb.modules.verify.entity.VerifyFeedbackEntity;
...
@@ -20,6 +20,7 @@ import com.ejweb.modules.verify.entity.VerifyFeedbackEntity;
import
com.ejweb.modules.verify.service.VerifyFeedbackService
;
import
com.ejweb.modules.verify.service.VerifyFeedbackService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.util.CollectionUtils
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
org.springframework.web.bind.annotation.ResponseBody
;
...
@@ -279,6 +280,11 @@ public class VerifyFeedbackController {
...
@@ -279,6 +280,11 @@ public class VerifyFeedbackController {
// 通过参数校验
// 通过参数校验
if
(
message
==
null
)
{
if
(
message
==
null
)
{
PageEntity
<
VerifyFeedbackEntity
>
list
=
feedbackService
.
verifyConditionList
(
bean
);
PageEntity
<
VerifyFeedbackEntity
>
list
=
feedbackService
.
verifyConditionList
(
bean
);
if
(
list
==
null
||
CollectionUtils
.
isEmpty
(
list
.
getList
()))
{
responseBean
.
setMessage
(
GConstants
.
EMPTY
);
responseBean
.
setStatus
(
ErrorCode
.
STATUS_CODE_2001
);
return
responseBean
;
}
responseBean
.
setData
(
list
);
responseBean
.
setData
(
list
);
return
responseBean
;
return
responseBean
;
}
}
...
...
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