| | |
| | | package com.ruoyi.order.config; |
| | | |
| | | import com.github.binarywang.wxpay.config.WxPayConfig; |
| | | import com.github.binarywang.wxpay.service.WxPayService; |
| | | import com.github.binarywang.wxpay.service.impl.WxPayServiceImpl; |
| | | import lombok.AllArgsConstructor; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; |
| | | import org.springframework.boot.context.properties.EnableConfigurationProperties; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Configuration; |
| | | |
| | | /** |
| | |
| | | return PLATFORM_TY_MAC_ID; |
| | | } |
| | | |
| | | @Bean |
| | | /*@Bean |
| | | @ConditionalOnMissingBean |
| | | public WxPayService wxService() { |
| | | WxPayConfig payConfig = new WxPayConfig(); |
| | | *//*WxPayConfig payConfig = new WxPayConfig(); |
| | | payConfig.setAppId(StringUtils.trimToNull(this.properties.getAppId())); |
| | | payConfig.setMchId(StringUtils.trimToNull(this.properties.getMchId())); |
| | | payConfig.setMchKey(StringUtils.trimToNull(this.properties.getMchKey())); |
| | |
| | | |
| | | WxPayService wxPayService = new WxPayServiceImpl(); |
| | | wxPayService.setConfig(payConfig); |
| | | return wxPayService; |
| | | } |
| | | return wxPayService;*//* |
| | | }*/ |
| | | |
| | | } |