提交 dff7116a 编写于 作者: zhouweidong's avatar zhouweidong

开放微信支付接口

上级 57ce8670
......@@ -116,6 +116,8 @@ public class DevBootSecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/"+previewpath+"/**").permitAll()
//开放支付接口
.antMatchers("/trade/pagepay").permitAll()
.antMatchers("/trade/precreate").permitAll()
.antMatchers("/trade/query").permitAll()
.anyRequest().authenticated()
// 防止iframe 造成跨域
.and().headers().frameOptions().disable();
......
......@@ -120,7 +120,9 @@ public class apiSecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/"+uploadpath).permitAll()
.antMatchers("/"+previewpath+"/**").permitAll()
//开放支付接口
.antMatchers("/trade/pagepay").permitAll()
.antMatchers("/trade/pagepay").permitAll()
.antMatchers("/trade/precreate").permitAll()
.antMatchers("/trade/query").permitAll()
// 所有请求都需要认证
.anyRequest().authenticated()
// 防止iframe 造成跨域
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册