yl-backend/src/main/java/com/guwan/backend/constant/SecurityConstants.java

31 lines
885 B
Java
Raw Normal View History

2024-12-06 21:23:13 +08:00
package com.guwan.backend.constant;
import java.util.List;
/**
* 安全相关常量配置
*/
public class SecurityConstants {
/**
* API接口白名单
* 这些路径可以直接访问不需要认证
*/
public static final List<String> WHITE_LIST = List.of(
"/demo/**", // 测试接口
"/api/user/register", // 用户注册
"/api/user/login", // 用户登录
2024-12-07 14:43:43 +08:00
"/api/user/getEmailCode", // 获取邮箱验证码
"/api/user/getPhoneCode" // 获取手机验证码
2024-12-06 21:23:13 +08:00
);
/**
* 静态资源白名单
* 这些路径用于访问静态资源不需要认证
*/
public static final List<String> STATIC_RESOURCES = List.of(
"/static/**", // 静态资源目录
"/public/**", // 公共资源目录
"/error" // 错误页面
);
}