基于springboot框架的微信公众号基础开发(一)----有关微信的基础框架搭配。

基于springboot框架的微信公众号基础开发(一)----有关微信的基础框架搭配。


如果自己没有微信公众号,可以先用测试号申请一下。
测试公众号申请
转载需注明: https://blog.csdn.net/juan1997/article/details/90643639
一、首先往pom.xml文件中引入j微信开发工具jar包。


	
		
			com.github.binarywang
			weixin-java-mp
			3.3.0
		

二、在application.yml文件配置微信公众的基础信息。

wechat:
		mpAppId: #从微信公众号开发平台找或者申请测试账号都可以
		mpAppSecret: #从微信公众号开发平台找或者申请测试账号都可以
		mpToken: 123456ad (接口配置里的Token值)
	  # mpAesKey: 111 (接口配置里的EncodingAESKey值)

三、创建一个配置信息的实体类我们在这里叫 WechatAccountConfig。
在这里同时也要注意下:@ConfigurationProperties 和 @Bean 或者 @Component 等只要能生成spring bean的注解,结合起来使用,这样的话,当其他类注入该类时,就会触发该类的加载过程。

@Data
	Component
	@ConfigurationProperties(prefix = "wechat")
	public class WechatAccountConfig {
		private String mpAppId;
		private String mpAppSecret;
		private String mpToken;
    }

注意:因为我们这里引入了lombok工具包,所以不用set,get。


		org.projectlombok
		lombok
		1.18.4
	

四、创建WeChatMpConfig

@Component //在此类上@Component注解,即表明此类是bean 
	public class WeChatMpConfig {
	@Autowired
	private WechatAccountConfig wechatAccountConfig;
		@Bean
		public WxMpService wxMpService() {
			WxMpService wxMpService = new WxMpServiceImpl();
			wxMpService.setWxMpConfigStorage(wxMpConfigStorage());
			return wxMpService;
		}
		@Bean
		public WxMpTemplateMsgService wxMpTemplateMsgService(WxMpService wxMpService) {
			WxMpTemplateMsgService wxMpTemplateMsgService = new WxMpTemplateMsgServiceImpl(wxMpService);
			return wxMpTemplateMsgService;
		}
		@Bean
		public WxMpConfigStorage wxMpConfigStorage() {
			WxMpInMemoryConfigStorage wxMpConfigStorage = new WxMpInMemoryConfigStorage();
			wxMpConfigStorage.setAppId(wechatAccountConfig.getMpAppId());
			wxMpConfigStorage.setSecret(wechatAccountConfig.getMpAppSecret());
			wxMpConfigStorage.setToken("123456ad");
			return wxMpConfigStorage;
		}
	}

你可能感兴趣的:(基于springboot框架的微信公众号基础开发(一)----有关微信的基础框架搭配。)