-
Notifications
You must be signed in to change notification settings - Fork 6
Autowiring WxMpService
Hippoom edited this page Jun 29, 2017
·
2 revisions
The starter provides a WxMpService instance by default. You can provide a WxMpService instance instead:
@Configuration
public class YourWeChatMpConfiguration {
@Bean
protected WxMpService wxMpService(WxMpConfigStorage wxMpConfigStorage) {
WxMpService wxMpService = new WxMpServiceImpl();
wxMpService.setWxMpConfigStorage(wxMpConfigStorage);
// omitted setters
return wxMpService;
}
}- Quick start
- weixin-java-mp support
- Autowiring WxMpConfigStorage
- API support
- Inbound messaging
- Identity & Access
- JS SDK support
- Testing
- Release notes