com.binarywang.spring.starter.wxjava.channel.properties.WxChannelMultiProperties Maven / Gradle / Ivy
package com.binarywang.spring.starter.wxjava.channel.properties;
import com.binarywang.spring.starter.wxjava.channel.enums.HttpClientType;
import com.binarywang.spring.starter.wxjava.channel.enums.StorageType;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
/**
* 微信多视频号接入相关配置属性
*
* @author Winnie
* @date 2024/9/13
*/
@Data
@NoArgsConstructor
@ConfigurationProperties(WxChannelMultiProperties.PREFIX)
public class WxChannelMultiProperties implements Serializable {
private static final long serialVersionUID = - 8361973118805546037L;
public static final String PREFIX = "wx.channel";
private Map apps = new HashMap<>();
/**
* 存储策略
*/
private final ConfigStorage configStorage = new ConfigStorage();
@Data
@NoArgsConstructor
public static class ConfigStorage implements Serializable {
private static final long serialVersionUID = - 5152619132544179942L;
/**
* 存储类型.
*/
private StorageType type = StorageType.MEMORY;
/**
* 指定key前缀.
*/
private String keyPrefix = "wx:channel:multi";
/**
* redis连接配置.
*/
@NestedConfigurationProperty
private final WxChannelMultiRedisProperties redis = new WxChannelMultiRedisProperties();
/**
* http客户端类型.
*/
private HttpClientType httpClientType = HttpClientType.HTTP_CLIENT;
/**
* http代理主机.
*/
private String httpProxyHost;
/**
* http代理端口.
*/
private Integer httpProxyPort;
/**
* http代理用户名.
*/
private String httpProxyUsername;
/**
* http代理密码.
*/
private String httpProxyPassword;
/**
* http 请求最大重试次数
*
* {@link me.chanjar.weixin.channel.api.WxChannelService#setMaxRetryTimes(int)}
* {@link me.chanjar.weixin.channel.api.impl.BaseWxChannelServiceImpl#setMaxRetryTimes(int)}
*/
private int maxRetryTimes = 5;
/**
* http 请求重试间隔
*
* {@link me.chanjar.weixin.channel.api.WxChannelService#setRetrySleepMillis(int)}
* {@link me.chanjar.weixin.channel.api.impl.BaseWxChannelServiceImpl#setRetrySleepMillis(int)}
*/
private int retrySleepMillis = 1000;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy