Redisは携帯電話の認証コードを送信する機能を模倣している
2022-01-15 23:25:54
フローチャート
I: jedis依存パッケージの追加
2:Redisサービスへの接続が成功するかどうかのテスト
// Create a Jedis object to connect to the Redis service (on the server via redis-server you need to specify the configuration file: redis-server /etc/redis.conf)
Jedis jedis = new Jedis("192.168.119.128", 6379);
String value = jedis.ping();
System.out.println(value);
jedis.close();
III: CAPTCHAを生成するメソッドを書く
/**
* Method for generating a captcha
* @return code
*/
public static String getCode() {
Random random = new Random();
String code = "";
for (int i = 0; i < 6; i++) {
int num = random.nextInt(10);
code += num;
}
System.out.println(code);
return code;
}
IV: CAPTCHAを送信するメソッドを書く
/**
* The user clicks to generate a verification code and add it to redis
* @param phone
*/
public static void sendVerifyCode(String phone) {
Jedis jedis = new Jedis("192.168.119.128", 6379);
// key of the phone number, get the number of times the phone number sends the verification code
String countKey = "VerifyCode" + phone + ":count";
// Verify the key of the code, get the verification code of the phone number
String codeKey = "VerifyCode" + phone + ":code";
// Get the countKey to determine whether the current phone number can send the verification code
String count = jedis.get(countKey);
if (count == null) {
jedis.setex(countKey, 24 * 60 * 60, "1");
} else if (Integer.parseInt(count) <= 2) {
jedis.incr(countKey);
} else if (Integer.parseInt(count) > 2) {
System.out.println("The number of times the current phone number sends the verification code exceeds the limit, please send the verification code again tomorrow");
jedis.close();
}
String code = getCode();
jedis.setex(codeKey, 120, code);
jedis.close();
}
V: チェックキャプチャメソッドの書き方
/**
* User input phone number and verification code for verification
* @param phone
* @param code
code */
public static void CustomerVerifyCode(String phone, String code) {
Jedis jedis = new Jedis("192.168.119.128", 6379);
String codeKey = "VerifyCode" + phone + ":code";
String phoneVerifyCode = jedis.get(codeKey);
if (phoneVerifyCode.equals(code)) {
System.out.println("Verification successful! ");
} else {
System.out.println("Checksum failed! ");
}
jedis.close();
}
携帯電話の認証コード送信を模倣するRedisについての記事は以上です。Redisの携帯電話認証コード送信内容については、スクリプトハウスの過去記事を検索するか、引き続き以下の関連記事を閲覧してください。
関連
-
JAVAでRedisの5つのデータ構造を利用する方法
-
CentOS 8.4へのRedis 6.2.6の詳細なインストール方法
-
Redisの重複排除の3つの手法のまとめ
-
redis クラスタの実装は同じプレフィックスを持つキーをクリーンアップします。
-
ジェディスはRedisを操作してCaptcha配信をシミュレートする
-
Redisによる分散シングルナンバーと分散ID(カスタムルール生成)
-
Redisの高同期スパイクを防ぐために、ソースコードソリューションを売られすぎ
-
マイクロサービス領域におけるredisの貢献度を説明する
-
RedisClusterが16,384個のスロットを持つ設計になっている理由
-
redis アプリケーション編 ---- スパイク、サインイン、セッション共有
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
redisクラスタ構築プロセス (非常に詳細、初心者向け)
-
redis の RedissonLock が待ちロックを実装する方法
-
redisプラグインbloom-filterをcentosにインストールする方法
-
redisでluaスクリプトを使用するためのチュートリアル
-
Redisにおけるビットマップの説明
-
SpringBootのRedis連携のアイデア解説
-
インタビューFAQです。Redisキャッシュとデータベース間のデータ整合性を確保する方法
-
redisを使ってnearly peopleの機能を実装する
-
Redisによる携帯電話認証コード配信の模倣例
-
SpringBootがRedisの分散ロックを利用して並行処理の問題を解決することについて