<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
網址:http://sms.webchinese.cn
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf-spring5</artifactId> </dependency> <dependency> <groupId>org.thymeleaf.extras</groupId> <artifactId>thymeleaf-extras-java8time</artifactId> </dependency> <dependency> <groupId>org.thymeleaf.extras</groupId> <artifactId>thymeleaf-extras-springsecurity5</artifactId> </dependency> <!--簡訊驗證依賴匯入--> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.0.1</version> </dependency>
public class CodeUtil { @Bean public PasswordEncoder passwordEncoder(){ return new BCryptPasswordEncoder(); } /** * 隨機生成6位驗證碼 * */ public String getRandomCode(Integer code){ Random random = new Random(); StringBuffer result= new StringBuffer(); for (int i=0;i<code;i++){ result.append(random.nextInt(10)); } return result.toString(); } //儲存驗證碼和時間 public Code saveCode(String code){ Code code1=new Code(); SimpleDateFormat sf = new SimpleDateFormat("yyyyMMddHHmmss"); Calendar c = Calendar.getInstance(); c.add(Calendar.MINUTE, 5); String currentTime = sf.format(c.getTime());// 生成5分鐘後時間,使用者校驗是否過期 //驗證碼加密 String encode=passwordEncoder().encode(code); code1.setCode(encode); code1.setCurrentTime(currentTime); return code1; } /** * 解密處理 * @param code 輸入 * @param code1 目標 */ public Boolean deciphering(String code,String code1){ boolean matches = passwordEncoder().matches(code,code1); return matches; } }
@Component public class TelMessageUtil { private static final String SMS_Url = "http://sms.webchinese.cn/web_api/"; /** * @param Uid SMS使用者id * @param Key 介面祕鑰:SMS登入可查(非登入密碼) * @param sendPhoneNum 簡訊傳送目標號碼 * @param desc 簡訊內容 * @return Integer(1:成功碼,其他失敗,具體參見注釋) */ public static Integer send(String Uid,String Key,String sendPhoneNum,String desc){ HttpClient client = new HttpClient(); PostMethod post = new PostMethod(SMS_Url); post.addRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=gbk");// 在標頭檔案中設定轉碼 //設定引數 NameValuePair[] data = { new NameValuePair("Uid", Uid), new NameValuePair("Key", Key),//祕鑰 new NameValuePair("smsMob", sendPhoneNum), new NameValuePair("smsText", desc) }; post.setRequestBody(data); try { client.executeMethod(post); } catch (Exception e) { e.printStackTrace(); } Header[] headers = post.getResponseHeaders(); int statusCode = post.getStatusCode(); System.out.println("statusCode:" + statusCode); for (Header h : headers) { System.out.println(h.toString()); } String result =""; try { result = new String(post.getResponseBodyAsString().getBytes("gbk")); } catch (Exception e) { e.printStackTrace(); } post.releaseConnection(); return Integer.parseInt(result); } /** * -1 沒有該使用者賬戶 -2 介面金鑰不正確 [檢視金鑰]不是賬戶登陸密碼 -21 MD5介面金鑰加密不正確 -3 簡訊數量不足 -11 該使用者被禁用 -14 簡訊內容出現非法字元 -4 手機號格式不正確 -41 手機號碼為空 -42 簡訊內容為空 -51 簡訊簽名格式不正確介面簽名格式為:【簽名內容】 -6 IP限制 大於0 簡訊傳送數量 以上作為補充 */ public static String getMessage(Integer code){ String message; if(code > 0 ) { message = "SMS-f傳送成功!簡訊量還有" + code + "條"; }else if(code == -1){ message = "SMS-沒有該使用者賬戶"; }else if(code == -2){ message = "SMS-介面金鑰不正確"; }else if(code == -21){ message = "SMS-MD5介面金鑰加密不正確"; }else if(code == -3){ message = "SMS-簡訊數量不足"; }else if(code == -11){ message = "SMS-該使用者被禁用"; }else if(code == -14){ message = "SMS-簡訊內容出現非法字元"; }else if(code == -4){ message = "SMS-手機號格式不正確"; }else if(code == -41){ message = "SMS-手機號碼為空"; }else if(code == -42){ message = "SMS-簡訊內容為空"; }else if(code == -51){ message = "SMS-簡訊簽名格式不正確介面簽名格式為:【簽名內容】"; }else if(code == -6){ message = "SMS-IP限制"; }else{ message = "其他錯誤"; } return message; } }
//前臺驗證手機號 @RequestMapping("/checkTel") public String checkTel(@RequestParam("tel") String tel, HttpSession session, Model model){ Users users=new Users(); users.setTel(tel); if (loginService.CheckOnly(users)) { model.addAttribute("msg","沒有此使用者,請註冊!"); return "register"; }else { model.addAttribute("info","已向你的手機號為"+tel+"傳送了驗證碼"); Long id = loginService.findIdByTel(tel); session.setAttribute("user_id",id); //傳送驗證碼 CodeUtil codeUtil=new CodeUtil(); //獲取六位驗證碼 String randomCode = codeUtil.getRandomCode(6); //先清除session域 session.removeAttribute("checkCode"); //加密驗證碼存放session域中 session.setAttribute("checkCode",codeUtil.passwordEncoder().encode(randomCode)); Integer resultCode = TelMessageUtil.send("****","************",tel, "【高校志願者平臺】你的驗證碼為【"+randomCode+"】(若不是本人操作,可忽略該條郵件)" ); System.out.println("紀錄檔資訊"+resultCode); return "updatePwd"; } }
到此這篇關於SpringBoot傳送簡訊驗證碼的範例的文章就介紹到這了,更多相關SpringBoot 簡訊驗證碼內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45