12345678910111213141516171819202122 |
- package com.wjp.modules.pay.config;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.context.annotation.PropertySource;
- import org.springframework.stereotype.Component;
- @Data
- @Component
- @PropertySource("classpath:/alipay.properties")
- @ConfigurationProperties(prefix = "alipay")
- public class AliPayProperties {
- private String appId;
- private String privateKey;
- private String publicKey;
- private String appCertPath;
- private String aliPayCertPath;
- private String aliPayRootCertPath;
- private String serverUrl;
- private String returnUrl;
- private String notifyUrl;
- }
|