🆕 添加 solon-plugins 下的两个新模块
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package features.test;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.noear.solon.test.SolonTest;
|
||||
|
||||
/**
|
||||
* @author noear 2024/9/4 created
|
||||
*/
|
||||
@SolonTest
|
||||
public class LoadTest {
|
||||
@Test
|
||||
public void load(){
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
# 视频号配置
|
||||
## 应用 1 配置(必填)
|
||||
wx.channel.apps.tenantId1.app-id=appId
|
||||
wx.channel.apps.tenantId1.secret=secret
|
||||
## 选填
|
||||
wx.channel.apps.tenantId1.use-stable-access-token=false
|
||||
wx.channel.apps.tenantId1.token=
|
||||
wx.channel.apps.tenantId1.aes-key=
|
||||
## 应用 2 配置(必填)
|
||||
wx.channel.apps.tenantId2.app-id=@appId
|
||||
wx.channel.apps.tenantId2.secret=@secret
|
||||
## 选填
|
||||
wx.channel.apps.tenantId2.use-stable-access-token=false
|
||||
wx.channel.apps.tenantId2.token=
|
||||
wx.channel.apps.tenantId2.aes-key=
|
||||
|
||||
# ConfigStorage 配置(选填)
|
||||
## 配置类型: memory(默认), jedis, redisson, redis_template
|
||||
wx.channel.config-storage.type=memory
|
||||
## 相关redis前缀配置: wx:channel:multi(默认)
|
||||
wx.channel.config-storage.key-prefix=wx:channel:multi
|
||||
wx.channel.config-storage.redis.host=127.0.0.1
|
||||
wx.channel.config-storage.redis.port=6379
|
||||
wx.channel.config-storage.redis.password=123456
|
||||
|
||||
# http 客户端配置(选填)
|
||||
## # http客户端类型: http_client(默认)
|
||||
wx.channel.config-storage.http-client-type=http_client
|
||||
wx.channel.config-storage.http-proxy-host=
|
||||
wx.channel.config-storage.http-proxy-port=
|
||||
wx.channel.config-storage.http-proxy-username=
|
||||
wx.channel.config-storage.http-proxy-password=
|
||||
## 最大重试次数,默认:5 次,如果小于 0,则为 0
|
||||
wx.channel.config-storage.max-retry-times=5
|
||||
## 重试时间间隔步进,默认:1000 毫秒,如果小于 0,则为 1000
|
||||
wx.channel.config-storage.retry-sleep-millis=1000
|
||||
Reference in New Issue
Block a user