Commit cf1387fd authored by terrfly's avatar terrfly
Browse files

变更文件site

parent adba7f7e
......@@ -25,7 +25,7 @@ import org.springframework.stereotype.Component;
* 接收MQ消息
* 业务: 更新系统配置参数
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/7/27 9:23
*/
@Slf4j
......
......@@ -28,7 +28,7 @@ import java.io.Serializable;
* 用户身份认证失败处理类
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/6/8 17:11
*/
@Component
......
......@@ -42,7 +42,7 @@ import java.io.IOException;
* 避免使用@Component等bean自动装配注解:@Component会将filter被spring实例化为web容器的全局filter,导致重复过滤。
* @modify terrfly
* @version V1.0
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021-04-27 15:50
* <p>
*/
......
......@@ -34,7 +34,7 @@ import org.springframework.stereotype.Service;
*
* @author terrfly
* @modify zhuxiao
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021-04-27 15:50
*/
@Service
......
......@@ -40,7 +40,7 @@ import org.springframework.web.filter.CorsFilter;
* Spring Security 配置项
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/6/8 17:11
*/
@Configuration
......
......@@ -50,7 +50,7 @@ import java.util.*;
* 认证Service
*
* @modify zhuxiao
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021-04-27 15:50
*/
@Slf4j
......
......@@ -28,7 +28,7 @@ import org.springframework.web.servlet.mvc.method.annotation.ResponseBodyAdvice;
*
* @author terrfly
* @modify zhuxiao
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021-04-27 15:50
*/
@ControllerAdvice
......
......@@ -27,7 +27,7 @@ import javax.servlet.http.HttpServletResponse;
*
* @author terrfly
* @modify zhuxiao
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021-04-27 15:50
*/
@Component
......
......@@ -29,7 +29,7 @@ import javax.servlet.http.HttpServletRequest;
*
* @author terrfly
* @modify zhuxiao
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021-04-27 15:50
*/
@Service
......
......@@ -25,7 +25,7 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
*
* @author terrfly
* @modify zhuxiao
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021-04-27 15:50
*/
@Configuration
......
......@@ -23,7 +23,7 @@ import org.springframework.web.socket.server.standard.ServerEndpointExporter;
* 开启WebSocket支持
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/6/22 12:57
*/
@Configuration
......
......@@ -37,7 +37,7 @@ import java.util.concurrent.CopyOnWriteArraySet;
* /ws/payOrder/{訂單ID}/{客戶端自定義ID}
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/6/22 12:57
*/
@ServerEndpoint("/api/anon/ws/payOrder/{payOrderId}/{cid}")
......
......@@ -32,7 +32,7 @@ import java.util.Date;
*
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/6/8 17:17
*/
@Component
......
......@@ -31,7 +31,7 @@ import java.io.File;
* 实现回调接口抽象类
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/6/8 17:18
*/
public abstract class AbstractChannelNoticeService implements IChannelNoticeService {
......
......@@ -24,7 +24,7 @@ import org.springframework.beans.factory.annotation.Autowired;
* 支付接口抽象类
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/6/8 17:18
*/
public abstract class AbstractPaymentService implements IPaymentService{
......
......@@ -24,7 +24,7 @@ import org.springframework.beans.factory.annotation.Autowired;
* 退款接口抽象类
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/6/17 9:37
*/
public abstract class AbstractRefundService implements IRefundService{
......
......@@ -27,7 +27,7 @@ import javax.servlet.http.HttpServletRequest;
* 渠道侧的通知解析实现 【分为同步跳转(doReturn)和异步回调(doNotify) 】
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/5/8 15:14
*/
public interface IChannelNoticeService {
......
......@@ -23,7 +23,7 @@ import com.jeequan.jeepay.pay.model.MchAppConfigContext;
* 查单(渠道侧)接口定义
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/5/19 15:16
*/
public interface IPayOrderQueryService {
......
......@@ -24,7 +24,7 @@ import com.jeequan.jeepay.pay.model.MchAppConfigContext;
* 调起上游渠道侧支付接口
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/5/8 15:13
*/
public interface IPaymentService {
......
......@@ -25,7 +25,7 @@ import com.jeequan.jeepay.pay.rqrs.refund.RefundOrderRQ;
* 调起上游渠道侧退款接口
*
* @author terrfly
* @site https://www.jeepay.vip
* @site https://www.jeequan.com
* @date 2021/6/17 9:35
*/
public interface IRefundService {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment