feat 微信和支付宝聚合支付处理

This commit is contained in:
bootx
2024-02-11 21:47:02 +08:00
parent 7d65add2ca
commit 48e7a6cc5f
24 changed files with 329 additions and 270 deletions

View File

@@ -0,0 +1,24 @@
package cn.bootx.platform.daxpay.admin.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* 嵌入式前端项目转发控制器, 不用输入 index.html也可以正常访问
* @author xxm
* @since 2024/2/10
*/
@Controller
@RequestMapping
public class ForwardFrontController {
/**
* 将/front/*的访问请求代理到/h5/index.html*
*/
@GetMapping("/front/")
public String toH5(){
return "forward:/front/index.html";
}
}