Go语言实战案例:Cookie与Session基础

在 Web 开发中,HTTP 协议是无状态 的,每一次请求都是独立的。为了让服务器记住客户端的状态,我们需要使用 CookieSession

  • Cookie:存储在浏览器端的小数据,随请求一起发送给服务器。
  • Session:存储在服务器端的用户会话数据,通常通过 Cookie 中的 Session ID 来关联。

一、案例目标

我们要实现一个简单的会话系统:

    1. 用户第一次访问 /set 接口时,服务器设置一个 Cookie 记录用户名。
    1. 用户访问 /get 接口时,服务器读取 Cookie 并返回用户信息。
    1. 使用内存保存 Session 数据,让服务器记住用户的登录状态。

二、核心知识点

  • 设置 Cookiehttp.SetCookie(w, cookie)
  • 读取 Cookier.Cookie("name")
  • Session 存储 (简单版):用 map[string]string 在内存中存储用户会话数据
  • Session ID 生成 :用 crypto/rand 生成随机字符串

三、完整代码示例

go 复制代码
package main

import (
    "crypto/rand"
    "encoding/hex"
    "fmt"
    "net/http"
    "sync"
)

// 内存版 Session 存储
var (
    sessionStore = make(map[string]string)
    mu           sync.Mutex
)

// 生成随机 Session ID
func generateSessionID() string {
    b := make([]byte, 16)
    _, _ = rand.Read(b)
    return hex.EncodeToString(b)
}

// 设置 Session 和 Cookie
func setHandler(w http.ResponseWriter, r *http.Request) {
    username := r.URL.Query().Get("username")
    if username == "" {
        username = "游客"
    }

    // 创建 Session ID
    sessionID := generateSessionID()

    // 保存到服务器端 Session
    mu.Lock()
    sessionStore[sessionID] = username
    mu.Unlock()

    // 设置 Cookie
    http.SetCookie(w, &http.Cookie{
        Name:  "session_id",
        Value: sessionID,
        Path:  "/",
    })

    fmt.Fprintf(w, "Session 已创建,欢迎你:%s\n", username)
}

// 获取 Session
func getHandler(w http.ResponseWriter, r *http.Request) {
    cookie, err := r.Cookie("session_id")
    if err != nil {
        http.Error(w, "未找到会话,请先访问 /set", http.StatusUnauthorized)
        return
    }

    mu.Lock()
    username, exists := sessionStore[cookie.Value]
    mu.Unlock()

    if !exists {
        http.Error(w, "会话已失效", http.StatusUnauthorized)
        return
    }

    fmt.Fprintf(w, "欢迎回来,%s!\n", username)
}

func main() {
    http.HandleFunc("/set", setHandler)
    http.HandleFunc("/get", getHandler)

    fmt.Println("服务器启动:http://localhost:8080")
    http.ListenAndServe(":8080", nil)
}

四、运行与测试

    1. 启动服务器:
go 复制代码
go run main.go
    1. 设置 Session(访问 /set):
arduino 复制代码
curl "http://localhost:8080/set?username=Tom"

返回:

复制代码
Session 已创建,欢迎你:Tom

同时浏览器或客户端会收到一个 session_id Cookie。

    1. 获取 Session(访问 /get):
arduino 复制代码
curl "http://localhost:8080/get" --cookie "session_id=xxxx"

返回:

复制代码
欢迎回来,Tom!

五、运行原理

    1. 第一次访问 /set
    • • 服务器生成 session_id
    • • 在内存中保存 session_id -> username 映射
    • • 设置 Cookie 让浏览器保存 session_id
    1. 访问 /get
    • • 从 Cookie 读取 session_id
    • • 查询服务器端 Session 存储
    • • 找到对应用户名并返回

六、注意事项

    1. 内存版 Session 仅适合学习和测试
    • • 生产环境要使用 Redis、数据库等持久化存储
    1. Session 过期处理
    • • 生产环境要设置超时机制(可用 time.AfterFunc 定时清理)
    1. 安全性
    • • 使用 HTTPS 传输 Cookie(Secure: true
    • • 防止 XSS、CSRF 攻击

七、进阶扩展

  • • 使用 Go 第三方库(如 gorilla/sessions)管理 Session
  • • 将 Session 存储到 Redis,支持分布式部署
  • • 在 Cookie 中设置 HttpOnly、Secure 属性提升安全性
  • • 实现 Session 超时自动清理机制

相关推荐
小码哥_常2 分钟前
Android消息机制:Handler、Looper和Message的深度剖析
前端
小码哥_常4 分钟前
安卓开发新姿势:文件Picker全攻略,无痛适配不再难
前端
小码哥_常6 分钟前
Kafka平替!SpringBoot+Redis Stream+消费组打造极致消息队列
后端
happymaker062615 分钟前
web前端学习日记——DAY04
前端·学习
发现一只大呆瓜21 分钟前
React-路由监听 / 跳转 / 守卫全攻略(附实战代码)
前端·react.js·面试
swipe1 小时前
为什么 RAG 一定离不开向量检索:从文档向量化到语义搜索的工程实现
前端·llm·agent
OpenTiny社区2 小时前
AI-Extension:让 AI 真的「看得到、动得了」你的浏览器
前端·ai编程·mcp
IT_陈寒2 小时前
Redis缓存击穿:3个鲜为人知的防御策略,90%开发者都忽略了!
前端·人工智能·后端
uzong2 小时前
Harness Engineering 是什么?一场新的 AI 范式已经开始
人工智能·后端·架构
农夫山泉不太甜3 小时前
Tauri v2 实战代码示例
前端