All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.aqiu202.wechat.wxcodec.config.WxCodecAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.aqiu202.wechat.wxcodec.config;

import com.github.aqiu202.wechat.wxcodec.bean.WxCodecProperty;
import com.github.aqiu202.wechat.wxcodec.service.DecryptService;
import com.github.aqiu202.wechat.wxcodec.service.DecryptServiceImpl;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration(proxyBeanMethods = false)
@EnableConfigurationProperties(WxCodecProperty.class)
public class WxCodecAutoConfiguration {

    @Bean
    public DecryptService decryptService(WxCodecProperty wxCodecProperty) {
        return new DecryptServiceImpl(wxCodecProperty);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy