今天就跟大家聊聊有關(guān)怎么在C++服務(wù)端中使用Seesion,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)建站主營(yíng)虎林網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都app軟件開(kāi)發(fā)公司,虎林h5微信小程序搭建,虎林網(wǎng)站營(yíng)銷(xiāo)推廣歡迎虎林等地區(qū)企業(yè)咨詢(xún)
首先,我們看一個(gè)需求:
客戶(hù)第一次設(shè)置登陸后,以后再次登陸的時(shí)候,想要使用快捷登陸或者是一鍵登陸,比如我們使用指紋登陸,即可獲取我們的賬戶(hù)信息
根據(jù)這個(gè)需求我們做一個(gè)方案進(jìn)行解決,底層實(shí)現(xiàn)我們可以使用session的思想;
方案:
說(shuō)明 :
用戶(hù)快捷登陸時(shí),根據(jù)快捷登陸的ID碼在redis中查找
如果再redis中不存在,則創(chuàng)建session,與用戶(hù)的id綁定;如果存在,則登陸成功,調(diào)用相關(guān)功能顯示用戶(hù)信息
session的產(chǎn)生一般每個(gè)公司都會(huì)有自己改造的一套方案,這樣可以提升安全性,這里就使用原生的MD5接口
關(guān)于redis鍵值對(duì)的設(shè)計(jì),一般都比較簡(jiǎn)單,建議大家可以自己設(shè)計(jì)一套,并且實(shí)現(xiàn)這個(gè)功能;
這里,簡(jiǎn)單展示一下 sessionid 的生成:
#pragma once #include <iostream> #include <openssl/md5.h> #include <string.h> using namespace std; class Md5 { public: Md5(); ~Md5(); bool SetMd5(string data); unsigned char* GetMd5(); private: MD5_CTX ctx; unsigned char outMd5[16]; }; #include "Md5.h" Md5::Md5() { } Md5::~Md5() { } unsigned char* Md5::GetMd5() { //數(shù)組初始化 memset(outMd5,0x00,sizeof(outMd5)); int res = MD5_Final(outMd5,&ctx); if(res != 1) { cout<<"Md5_Final is errpr"<<endl; } return outMd5; } bool Md5::SetMd5(string data) { //初始化Md5 MD5_Init(&ctx); //計(jì)算Md5 int res = MD5_Update(&ctx,data.c_str(),5); if(res != 1) { cout<<"Md5_Update is errpr"<<endl; return false; } return true; } #pragma once #include <iostream> #include <stdlib.h> #include <stdio.h> #include "string.h" #include "Md5.h"
using namespace std;
class Session { public: Session(); ~Session(); Session(string UserName,int ID); bool SetId(); int GetId(); bool SetUserName(); string GetUserName(); bool SetSessionId(); bool SetSessionData(); string GetSessionData(); unsigned char* GetSessionId(); private: string name; int id; string SessionData; Md5 md5; }; #include "session.h" Session::Session() { } Session::~Session() { } Session::Session(string UserName,int ID) { this->id = ID; this->name = UserName; } int Session::GetId() { return this->id; } string Session::GetUserName() { return this->name; } bool Session::SetSessionData() { char str[20]; memset(str,0,sizeof(str)); //這里使用name+id的方式,生成最終的sessionid sprintf(str,"%d",GetId()); SessionData = GetUserName()+str; return true; } string Session::GetSessionData() { if(!SessionData.empty()) return SessionData; } unsigned char* Session::GetSessionId() { return md5.GetMd5(); } bool Session::SetSessionId() { bool res = md5.SetMd5(GetSessionData()); if(!res) return false; return true; } #include "session.h" int main() { unsigned char* str = new unsigned char[16]; Session session("test",10); session.SetSessionData(); session.SetSessionId(); str = session.GetSessionId(); for(int i=0;i<16;i++) { printf("%02X",str[i]); } printf("\n"); return 0; } CXX = g++ -std=c++11 CFLAG = -g -lssl -lcrypto target = test OBJ = Md5.cpp main.cpp session.cpp $(target):$(OBJ) $(CXX) -o $@ $^ $(CFLAG) clean: rm -f $(target)
補(bǔ)充知識(shí)點(diǎn):
session原理:
用戶(hù)使用瀏覽器第一次向服務(wù)器發(fā)送請(qǐng)求,服務(wù)器在接受到請(qǐng)求后,調(diào)用對(duì)應(yīng)的 Servlet 進(jìn)行處理。在處理過(guò)程中會(huì)給用戶(hù)創(chuàng)建一個(gè)session 對(duì)象,用來(lái)存儲(chǔ)用戶(hù)請(qǐng)求處理相關(guān)的公共數(shù)據(jù),并將此 session 對(duì)象的 JSESSIONID 以 Cookie 的形式存儲(chǔ)在瀏覽器中 (臨時(shí)存儲(chǔ),瀏覽器關(guān)閉即失效)。用戶(hù)在發(fā)起第二次請(qǐng)求及后續(xù)請(qǐng)求時(shí),請(qǐng)求信息中會(huì)附帶JSESSIONID,服務(wù)器在接收到請(qǐng)求后, 調(diào)用對(duì)應(yīng)的Servlet 進(jìn)行請(qǐng)求處理,同時(shí)根據(jù) JSESSIONID 返回其對(duì)應(yīng)的session 對(duì)象。
特點(diǎn):
由服務(wù)器進(jìn)行創(chuàng)建
每個(gè)用戶(hù)獨(dú)立擁有一個(gè)session
默認(rèn)存儲(chǔ)時(shí)間為 30 分鐘作用:
解決了一個(gè)用戶(hù)的不同請(qǐng)求的數(shù)據(jù)共享問(wèn)題。
使用:
創(chuàng)建Session 對(duì)象
存儲(chǔ)數(shù)據(jù)到session 對(duì)象獲取session 對(duì)象
獲取數(shù)據(jù)從session 對(duì)象
如果獲取session 中不存在的數(shù)據(jù)返回null。
看完上述內(nèi)容,你們對(duì)怎么在C++服務(wù)端中使用Seesion有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。
新聞標(biāo)題:怎么在C++服務(wù)端中使用Seesion
分享地址:http://aaarwkj.com/article2/gpjdic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、網(wǎng)站制作、企業(yè)網(wǎng)站制作、ChatGPT、、網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)