mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 08:37:32 +08:00
🎨 完善企业微信 starter 文档
This commit is contained in:
parent
16eac7e233
commit
a9da3ab39e
@ -16,9 +16,11 @@
|
||||
wx.cp.corp-id = @corp-id
|
||||
wx.cp.corp-secret = @corp-secret
|
||||
# 选填
|
||||
wx.cp.agent-id = @agent-id
|
||||
wx.cp.token = @token
|
||||
wx.cp.aes-key = @aes-key
|
||||
wx.cp.agent-id = @agent-id
|
||||
wx.cp.msg-audit-priKey = @msg-audit-priKey
|
||||
wx.cp.msg-audit-lib-path = @msg-audit-lib-path
|
||||
# ConfigStorage 配置(选填)
|
||||
wx.cp.config-storage.type=memory # 配置类型: memory(默认), jedis, redisson, redistemplate
|
||||
# http 客户端配置(选填)
|
||||
|
@ -32,7 +32,7 @@ public class WxCpInJedisConfigStorageConfiguration extends AbstractWxCpConfigSto
|
||||
|
||||
@Bean
|
||||
@ConditionalOnMissingBean(WxCpConfigStorage.class)
|
||||
public WxCpConfigStorage wxOpenConfigStorage() {
|
||||
public WxCpConfigStorage wxCpConfigStorage() {
|
||||
WxCpDefaultConfigImpl config = getConfigStorage();
|
||||
return this.config(config, wxCpProperties);
|
||||
}
|
||||
|
@ -29,7 +29,7 @@ public class WxCpInRedisTemplateConfigStorageConfiguration extends AbstractWxCpC
|
||||
|
||||
@Bean
|
||||
@ConditionalOnMissingBean(WxCpConfigStorage.class)
|
||||
public WxCpConfigStorage wxOpenConfigStorage() {
|
||||
public WxCpConfigStorage wxCpConfigStorage() {
|
||||
WxCpDefaultConfigImpl config = getConfigStorage();
|
||||
return this.config(config, wxCpProperties);
|
||||
}
|
||||
|
@ -34,7 +34,7 @@ public class WxCpInRedissonConfigStorageConfiguration extends AbstractWxCpConfig
|
||||
|
||||
@Bean
|
||||
@ConditionalOnMissingBean(WxCpConfigStorage.class)
|
||||
public WxCpConfigStorage wxOpenConfigStorage() {
|
||||
public WxCpConfigStorage wxCpConfigStorage() {
|
||||
WxCpDefaultConfigImpl config = getConfigStorage();
|
||||
return this.config(config, wxCpProperties);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user