您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關java實現發送驗證碼短信功能的方法的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
功能需求:
1、后臺隨機產生4個字符
2、1分鐘以內只能發送1次驗證碼
3、超過1分鐘,但在5分鐘以內,發送的驗證碼依然是第一次產生的驗證碼字符
4、超過了5分鐘以后,產生全新的驗證碼
前端使用什么框架先不管
依賴配置
短信依賴包 redis配置,因為驗證碼和手機號存儲在redis中
短信平臺使用的建網 sms ,http://www.smschinese.cn/ 可以免費使用5條 測試即可
注意:配置接口的 賬戶名 和 密鑰 每個人是不同的,復制過去記得更改
短信依賴包
<!--短信jar包--> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency>
redis jar包
<!--redis jar 包--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
使用redis前,要先配置連接,在application.properties配置
# redis 屬性信息 ## redis數據庫索引(默認為0) spring.redis.database=0 ## redis服務器地址 spring.redis.host=localhost ## redis服務器連接端口 spring.redis.port=6379 ## redis服務器連接密碼(默認為空) ## spring.redis.password=123456 ## 連接池最大連接數(使用負值表示沒有限制) spring.redis.jedis.pool.max-active=8 ## 連接池中的最大空閑連接 spring.redis.jedis.pool.max-idle=8 ## 連接池最大阻塞等待時間(使用負值表示沒有限制) spring.redis.jedis.pool.max-wait=-1ms ## 連接池中的最小空閑連接 spring.redis.jedis.pool.min-idle=0
創建一個工具類 StrUtils.getComplexRandomString ()// 獲取隨機字符 位數自己輸入
import java.util.ArrayList; import java.util.List; import java.util.Random; /** * @author yaohuaipeng * @date 2018/10/26-16:16 */ public class StrUtils { /** * 把逗號分隔的字符串轉換字符串數組 * * @param str * @return */ public static String[] splitStr2StrArr(String str,String split) { if (str != null && !str.equals("")) { return str.split(split); } return null; } /** * 把逗號分隔字符串轉換List的Long * * @param str * @return */ public static List<Long> splitStr2LongArr(String str) { String[] strings = splitStr2StrArr(str,","); if (strings == null) return null; List<Long> result = new ArrayList<>(); for (String string : strings) { result.add(Long.parseLong(string)); } return result; } /** * 把逗號分隔字符串轉換List的Long * * @param str * @return */ public static List<Long> splitStr2LongArr(String str,String split) { String[] strings = splitStr2StrArr(str,split); if (strings == null) return null; List<Long> result = new ArrayList<>(); for (String string : strings) { result.add(Long.parseLong(string)); } return result; } public static String getRandomString(int length) { String str = "0123456789"; Random random = new Random(); StringBuffer sb = new StringBuffer(); for (int i = 0; i < length; i++) { int number = random.nextInt(10); sb.append(str.charAt(number)); } return sb.toString(); } public static String getComplexRandomString(int length) { String str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; Random random = new Random(); StringBuffer sb = new StringBuffer(); for (int i = 0; i < length; i++) { int number = random.nextInt(62); sb.append(str.charAt(number)); } return sb.toString(); } public static String convertPropertiesToHtml(String properties){ //1:容量:6:32GB_4:樣式:12:塑料殼 StringBuilder sBuilder = new StringBuilder(); String[] propArr = properties.split("_"); for (String props : propArr) { String[] valueArr = props.split(":"); sBuilder.append(valueArr[1]).append(":").append(valueArr[3]).append("<br>"); } return sBuilder.toString(); } }
創建短信發送類 配置接口,其它類調用這個類的send方法傳入手機號和發送內容即可
import org.apache.commons.httpclient.Header; import org.apache.commons.httpclient.HttpClient; import org.apache.commons.httpclient.NameValuePair; import org.apache.commons.httpclient.methods.PostMethod; import java.io.IOException; public class SendMsgUtils { private static final String UID = "amazingwest";//這是建網SMS 上的登陸賬號 private static final String KEY = "d41d8cd98f00b204e980"; //這是密鑰 /** * 手機發送短信 * @param phone 手機號碼 * @param context 發送短信內容 */ public static void send(String phone, String context) { PostMethod post = null; try { //創建Http客戶端 HttpClient client = new HttpClient(); //創建一個post方法 post = new PostMethod("http://utf8.api.smschinese.cn"); //添加請求頭信息 post.addRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf8");//在頭文件中設置轉碼 NameValuePair[] data = {new NameValuePair("Uid", UID), new NameValuePair("Key", KEY), new NameValuePair("smsMob", phone), new NameValuePair("smsText", context)}; //設置請求體 post.setRequestBody(data); //執行post方法 client.executeMethod(post); //獲取響應頭信息 Header[] headers = post.getResponseHeaders(); //獲取狀態碼 int statusCode = post.getStatusCode(); System.out.println("statusCode:" + statusCode); //循環打印頭信息 for (Header h : headers) { System.out.println(h.toString()); } //獲取相應體 String result = new String(post.getResponseBodyAsString().getBytes("utf8")); System.out.println(result); //打印返回消息狀態 } catch (IOException e) { e.printStackTrace(); } finally { if (post != null) { //關閉資源 post.releaseConnection(); } } } }
創建注冊常量類,主要用來區分驗證碼是用來注冊還是登陸或者找回密碼
/** * 驗證碼常量 */ public class VerificationConstant { //用戶注冊常量 public static final String USER_REG = "user_reg"; }
前臺點擊發送驗證碼 首先要考慮多個用戶同時注冊,key值不能寫死
首先根據手機號加注冊標識(KEY)判斷redis中值value是否存在,不存在就創建一個鍵,key為手機號+加注冊標識,
判斷時間,就是創建redis鍵值對的時候就,value會加上一個當前時間戳,取value第一次創建的時間會分割value 拿當前時間戳減去第一次創建的時間戳就能得出具體的時間
第一次創建鍵值 設置鍵的存活時間為5分鐘 300秒
發送驗證碼短信,前端傳來手機號碼,在這里進行業務邏輯判斷 不需要判斷手機號是否注冊,這是其它類的事情 使用redisTemplate 就必須得 引入redis jar包
StrUtils.getComplexRandomString(4) 這就是上面創建的工具類中的一個方法,創建4位字符的隨機數,
StringUtils.isEmpty 是 import org.springframework.util.StringUtils 別弄錯了
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Service; import org.springframework.util.StringUtils; import java.util.concurrent.TimeUnit; @Service public class VerificationCodeServiceImpl implements IVerificationCodeService { @Autowired private RedisTemplate redisTemplate; /** * 發送注冊驗證碼 * 驗證碼需求: * 1.后臺隨機產生4個字符 * 2.1分鐘以內只能發送1次驗證碼 * 3.超過1分鐘,但在5分鐘以內,發送的驗證碼依然是第一次產生的驗證碼字符 * 4.超過了5分鐘以后,產生全新的驗證碼 * @return */ @Override public void sendRegisterVerificationCode(String phone) throws CustomException { //隨機產生4個字符 String value = StrUtils.getComplexRandomString(4); //在redis中通過key獲取對應的值 value:時間戳 String valueCode = (String) redisTemplate.opsForValue().get(phone + ":" + VerificationConstant.USER_REG); //如果不為空,就意味著驗證碼沒有過期,依然是在5分鐘以內 if(!StringUtils.isEmpty(valueCode)){ //開始時間戳 String beginTimer = valueCode.split(":")[1]; if(System.currentTimeMillis()-Long.valueOf(beginTimer)<=60*1000){ //自定義異常,自己創建一個就可以了 throw new CustomException("親!一分鐘以內不能發送多次驗證碼!!"); } //證明是超過了1分鐘,但依然在5分鐘以內,還是用之前的驗證碼 value = valueCode.split(":")[0]; } //存儲redis中,設置有效期是5分鐘 k=phone:USER_REG v= value:時間戳 // RedisUtil.set(phone:USER_REG, value:System.currentTimeMillis(), 5MIN); redisTemplate.opsForValue().set(phone + ":" + VerificationConstant.USER_REG, value + ":" + System.currentTimeMillis(), 5, TimeUnit.MINUTES); //發送手機驗證碼 String context = "尊敬的用戶,您的驗證碼為:" + value + ",請您在5分鐘以內完成注冊!!"; //發送短信 // SendMsgUtils.send(phone, context); System.out.println(context); } }
完成。
感謝各位的閱讀!關于“java實現發送驗證碼短信功能的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。