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

37 lines
1.1 KiB
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", // 获取邮箱验证码
2024-12-08 15:45:59 +08:00
"/api/user/getPhoneCode", // 获取手机验证码
"/v3/api-docs/**", // Swagger API文档
"/swagger-ui/**", // Swagger UI
"/swagger-ui.html", // Swagger UI HTML
"/swagger-resources/**", // Swagger 资源
"/webjars/**" // Swagger UI 相关资源
2024-12-06 21:23:13 +08:00
);
/**
* 静态资源白名单
* 这些路径用于访问静态资源不需要认证
*/
public static final List<String> STATIC_RESOURCES = List.of(
"/static/**", // 静态资源目录
"/public/**", // 公共资源目录
2024-12-08 18:42:46 +08:00
"/error" // 错误页面
2024-12-06 21:23:13 +08:00
);
}