Browse Source

[fix]
发短信工具类优化

limeng 4 months ago
parent
commit
ed8add22ff

+ 5 - 5
application-webadmin/pom.xml

@@ -96,11 +96,11 @@
             <version>1.3</version>
         </dependency>
 
-        <dependency>
-            <groupId>org.dromara.sms4j</groupId>
-            <artifactId>sms4j-spring-boot-starter</artifactId>
-            <version>3.3.3</version>
-        </dependency>
+<!--        <dependency>-->
+<!--            <groupId>org.dromara.sms4j</groupId>-->
+<!--            <artifactId>sms4j-spring-boot-starter</artifactId>-->
+<!--            <version>3.3.3</version>-->
+<!--        </dependency>-->
 
         <dependency>
             <groupId>com.github.binarywang</groupId>

+ 6 - 4
application-webadmin/src/main/java/com/tourism/webadmin/back/util/SMSUtils.java

@@ -8,22 +8,24 @@ import com.volcengine.service.sms.SmsService;
 import com.volcengine.service.sms.SmsServiceInfoConfig;
 import com.volcengine.service.sms.impl.SmsServiceImpl;
 import org.apache.commons.lang3.StringUtils;
+import org.checkerframework.checker.units.qual.A;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
 
 import java.util.HashMap;
 import java.util.Map;
 
+@Service
 public class SMSUtils {
 
     @Autowired
     private SmsSwitch smsSwitch;
-    private static final String AK = "AKLTYzA3ZDNiY2M5MWNlNGM1NThhM2ZlN2JhNTIyYWMxZDA";
 
-    private static final String SK = "WXpVME1USTBNbVprTnpKaU5HTTNORGhsT1dJNU1tUXlaVFl4TjJVeE1Uaw==";
-
-    private static SmsService smsService = SmsServiceImpl.getInstance(new SmsServiceInfoConfig(AK, SK));
+    private static SmsService smsService;
 
     public void sendMsg(String countryCode, String phoneNumber, String code){
+        smsService = SmsServiceImpl.getInstance(new SmsServiceInfoConfig(smsSwitch.getAK(), smsSwitch.getSK()));
+
         SmsSendRequest req = new SmsSendRequest();
         req.setPhoneNumbers(countryCode.replaceAll("\\+", "") + phoneNumber);
         req.setSmsAccount(smsSwitch.getSmsAccount());

+ 4 - 1
application-webadmin/src/main/java/com/tourism/webadmin/config/SmsSwitch.java

@@ -6,8 +6,11 @@ import org.springframework.stereotype.Component;
 
 @Data
 @Component
-@ConfigurationProperties(prefix = "sms.blends.huawei")
+@ConfigurationProperties(prefix = "sms.blends.huoshan")
 public class SmsSwitch {
+    private String aK;
+
+    private String sK;
     /**
      * 短信开关
      */

+ 15 - 12
application-webadmin/src/main/resources/application-test.yml

@@ -216,6 +216,21 @@ sa-token:
 sms:
   config-type: yaml
   blends:
+    huoshan:
+      ak: AKLTYzA3ZDNiY2M5MWNlNGM1NThhM2ZlN2JhNTIyYWMxZDA
+      sk: WXpVME1USTBNbVprTnpKaU5HTTNORGhsT1dJNU1tUXlaVFl4TjJVeE1Uaw
+      #华为短信开关
+      enable: true
+      #短信账号
+      smsAccount: 7fe76339
+      #国内短信签名
+      chinaSign: 山东老韩国际人才合作
+      #国外短信签名
+      otherSign: XYTravel
+      #国内短信模板
+      chinaTemplateId: ST_7fe71e56
+      #国外短信模板
+      otherTemplateId: ST_7fe70c7c
     huawei:
       #华为短信appKey
       accessKeyId: 7aUa9993Ggq76rRK0Bb35vZb5NCq
@@ -231,18 +246,6 @@ sms:
       statusCallBack:
       #华为分配的app请求地址
       url: https://smsapi.cn-north-4.myhuaweicloud.com:443
-      #华为短信开关
-      enable: true
-      #短信账号
-      smsAccount: 7fe76339
-      #国内短信签名
-      chinaSign: 山东老韩国际人才合作
-      #国外短信签名
-      otherSign: XYTravel
-      #国内短信模板
-      chinaTemplateId: ST_7fe71e56
-      #国外短信模板
-      otherTemplateId: ST_7fe70c7c
 wx:
   miniapp: # 小程序配置(必填),参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-miniapp-spring-boot-starter/README.md 文档
     appid: wx2d0bc678042f0817