| | |
| | | package org.dromara.common.sms.config; |
| | | |
| | | import org.dromara.common.sms.core.dao.PlusSmsDao; |
| | | import org.dromara.sms4j.api.dao.SmsDao; |
| | | import org.springframework.boot.autoconfigure.AutoConfiguration; |
| | | import org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Primary; |
| | | |
| | | /** |
| | | * 短信配置类(暂时没用 预留扩展) |
| | | * 短信配置类 |
| | | * |
| | | * @author Lion Li |
| | | * @version 4.2.0 |
| | | * @author Feng |
| | | */ |
| | | @AutoConfiguration |
| | | @AutoConfiguration(after = {RedisAutoConfiguration.class}) |
| | | public class SmsAutoConfiguration { |
| | | |
| | | @Primary |
| | | @Bean |
| | | public SmsDao smsDao() { |
| | | return new PlusSmsDao(); |
| | | } |
| | | |
| | | } |