Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
V
volunteer_service
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
licc
volunteer_service
Commits
c016bdf5
Commit
c016bdf5
authored
Apr 12, 2021
by
cy
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
541ad59e
874e8e16
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
AliPayServiceImpl.java
...java/cn/wisenergy/service/app/impl/AliPayServiceImpl.java
+2
-0
ShiroConfig.java
...in/java/cn/wisenergy/service/shir/config/ShiroConfig.java
+1
-1
No files found.
wisenergy-service/src/main/java/cn/wisenergy/service/app/impl/AliPayServiceImpl.java
View file @
c016bdf5
...
...
@@ -171,7 +171,9 @@ public class AliPayServiceImpl implements AliPayService {
*/
@Override
public
void
aliPayCallBack
(
HttpServletResponse
response
,
HttpServletRequest
request
)
throws
Exception
{
log
.
info
(
"进入支付宝回调接口 begin ....... "
);
PrintWriter
out
=
response
.
getWriter
();
log
.
info
(
"进入支付宝回调接口 out ....... {}"
,
out
);
System
.
out
.
println
(
"进入支付宝回调"
);
//获取支付宝POST过来反馈信息
Map
<
String
,
String
>
params
=
convertRequestParamsToMap
(
request
);
// 将异步通知中收到的待验证所有参数都存放到map中
...
...
wisenergy-service/src/main/java/cn/wisenergy/service/shir/config/ShiroConfig.java
View file @
c016bdf5
...
...
@@ -97,7 +97,7 @@ public class ShiroConfig {
filterChainDefinitionMap
.
put
(
"/upload_flowChart/**"
,
"anon"
);
//图片地址
filterChainDefinitionMap
.
put
(
"/webSocket/**"
,
"anon"
);
//socket
filterChainDefinitionMap
.
put
(
"/message/**"
,
"anon"
);
//消息推送接口
filterChainDefinitionMap
.
put
(
"/pay/**"
,
"an
no
"
);
filterChainDefinitionMap
.
put
(
"/pay/**"
,
"an
on
"
);
filterChainDefinitionMap
.
put
(
"/**"
,
"authc"
);
filterChainDefinitionMap
.
put
(
"/account/**"
,
"kickout"
);
filterChainDefinitionMap
.
put
(
"/banner/**"
,
"kickout"
);
...
...
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