websocket:重新封装 websocket 组件,支持 token 认证,并增加 WebSocketMessageListener 方便处理消息

This commit is contained in:
YunaiV 2023-11-25 20:44:36 +08:00
parent ae763f727f
commit bd91276155

View File

@ -76,7 +76,7 @@ public class TokenAuthenticationFilter extends OncePerRequestFilter {
}
// 用户类型不匹配无权限
// 注意只有 /admin-api/* /app-api/* userType才需要比对用户类型
// TODO 芋艿ws 要不要区分开
// 类似 WebSocket /ws/* 连接地址是不需要比对用户类型的
if (userType != null
&& ObjectUtil.notEqual(accessToken.getUserType(), userType)) {
throw new AccessDeniedException("错误的用户类型");