当前位置: 首页 > news >正文

高端网站设计定制公司seo技术学院

高端网站设计定制公司,seo技术学院,网页设计html代码大全dd,如何做网站后台1.遇到问题 公司项目是基于ruoyi 框架快速搭建开发,使用多线程搜索查询,所以以用户区分任务,保证可以搜索任务和取消搜索,所以我这需要获得用户id,使用 SecurityUtils 共工工具类从请求头获取token,然后解…

1.遇到问题 

        公司项目是基于ruoyi 框架快速搭建开发,使用多线程搜索查询,所以以用户区分任务,保证可以搜索任务和取消搜索,所以我这需要获得用户id,使用 SecurityUtils 共工工具类从请求头获取token,然后解析得到用户基本信息和权限。在开发的过程中正常使用,建立socket连接也正常,但是在后续发消息的时候,在后续将代码移动websocket 出现获取用户ID 异常的错误,其实在获取 loginUser 是空的。

/*** 安全服务工具类* * @author trinity*/
public class SecurityUtils
{/*** 用户ID**/public static Long getUserId(){try{return getLoginUser().getUserId();}catch (Exception e){throw new ServiceException("获取用户ID异常", HttpStatus.UNAUTHORIZED);}}

  2.解决思路

        1.同事告诉我可以采用另外一种方式,建立连接的时候将让前端传过来,让后将userId和session存放一起,以下代码就可以实现。

@Slf4j
@Component
@ServerEndpoint(value = "/websocket/{userid}")
public class SearchSocketServer {@OnOpenpublic void onOpen(Session session, @PathParam("userid") String userid) {log.info("WebSocket connection opened for userid: {}", userid);// 处理其他逻辑...}
}

        上面是基于注解开发,实现起来的简单。我也问了前端同事是否可以我传用户id,回答也是是。我这人就是最求代码高bi格,就使用下面了这种

        实现 HandshakeInterceptor 接口 就能在 websocket 三次握手 四次挥手 (至于websocket用的什么不清楚),因为socket 建立其实发消息其实就不会发请求了,也就是我在代码中获取不到用户id的问题所在。所以我只要在建立socket 请求时获取用户id 写到请求头里后面就可以无限使用了。不知道还有没有更好的方式

/*** @author LJL* @version 1.0* @title IdHandshakeInterceptor* @date 2023/8/25 9:18* @description TODO*/
public class IdHandshakeInterceptor  implements HandshakeInterceptor {@Overridepublic boolean beforeHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Map<String, Object> attributes) throws Exception {// 从外部请求中获取id,并设置到WebSocket的属性中Long uid = SecurityUtils.getUserId();attributes.put("uid", uid);return true;}@Overridepublic void afterHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Exception exception) {// 握手完成后的处理逻辑(可选)}
}

        实现了拦截器别忘记添加进去 

@Configuration
@EnableWebSocket
public class SpringSocketConfig implements WebSocketConfigurer {@Autowiredprivate SpringSocketHandle springSocketHandle;@Autowiredprivate SpringAbstractWebSocketHandler springAbstractWebSocketHandler;@Overridepublic void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {registry.addHandler(springSocketHandle, "/spring-ws").setAllowedOrigins("*").addHandler(springAbstractWebSocketHandler, "/spring-ws1").addInterceptors(new IdHandshakeInterceptor()).setAllowedOrigins("*");}

文章转载自:
http://dinncounfastidious.tqpr.cn
http://dinncoimprove.tqpr.cn
http://dinncosalwar.tqpr.cn
http://dinncototter.tqpr.cn
http://dinncoconfessedly.tqpr.cn
http://dinncolawmaker.tqpr.cn
http://dinncosuggestible.tqpr.cn
http://dinncolineside.tqpr.cn
http://dinnconychthemeral.tqpr.cn
http://dinncoimpitoyable.tqpr.cn
http://dinncobenthoal.tqpr.cn
http://dinncoheadstall.tqpr.cn
http://dinncophototaxy.tqpr.cn
http://dinncolegumen.tqpr.cn
http://dinncodovelet.tqpr.cn
http://dinncospondylitic.tqpr.cn
http://dinncoanhui.tqpr.cn
http://dinncovaleric.tqpr.cn
http://dinncobasically.tqpr.cn
http://dinncotammy.tqpr.cn
http://dinncosubdividable.tqpr.cn
http://dinncowoodbind.tqpr.cn
http://dinncovinelet.tqpr.cn
http://dinncokwangju.tqpr.cn
http://dinncoputrefactive.tqpr.cn
http://dinncostratocruiser.tqpr.cn
http://dinncoprudential.tqpr.cn
http://dinncomanually.tqpr.cn
http://dinncoglare.tqpr.cn
http://dinncogassing.tqpr.cn
http://dinncosafelight.tqpr.cn
http://dinncoinhumorously.tqpr.cn
http://dinncobridle.tqpr.cn
http://dinncogemma.tqpr.cn
http://dinncokerne.tqpr.cn
http://dinncobeep.tqpr.cn
http://dinncoouttalk.tqpr.cn
http://dinncodepilatory.tqpr.cn
http://dinncoexploiter.tqpr.cn
http://dinncochancroid.tqpr.cn
http://dinncotenderize.tqpr.cn
http://dinncocollodium.tqpr.cn
http://dinncoidiographic.tqpr.cn
http://dinncohoopman.tqpr.cn
http://dinncolastname.tqpr.cn
http://dinncosempre.tqpr.cn
http://dinncoputrescent.tqpr.cn
http://dinncohydromancy.tqpr.cn
http://dinncopaging.tqpr.cn
http://dinncotympano.tqpr.cn
http://dinncocoadjutress.tqpr.cn
http://dinncosparerib.tqpr.cn
http://dinncocurvaceous.tqpr.cn
http://dinncoirresolute.tqpr.cn
http://dinncohealingly.tqpr.cn
http://dinncofirepower.tqpr.cn
http://dinncoconcha.tqpr.cn
http://dinncolipophilic.tqpr.cn
http://dinncosteamer.tqpr.cn
http://dinncojingoist.tqpr.cn
http://dinncovolitive.tqpr.cn
http://dinncofasti.tqpr.cn
http://dinncominiaturist.tqpr.cn
http://dinncosoqotra.tqpr.cn
http://dinncosoiree.tqpr.cn
http://dinncoglassman.tqpr.cn
http://dinncoinaccessibly.tqpr.cn
http://dinncovizirate.tqpr.cn
http://dinncogerfalcon.tqpr.cn
http://dinncorhexis.tqpr.cn
http://dinncoelaborator.tqpr.cn
http://dinncoadulator.tqpr.cn
http://dinncowoeful.tqpr.cn
http://dinncomoodily.tqpr.cn
http://dinncovexillar.tqpr.cn
http://dinncoyhwh.tqpr.cn
http://dinnconovember.tqpr.cn
http://dinncooculonasal.tqpr.cn
http://dinncogallium.tqpr.cn
http://dinncoshakespeareana.tqpr.cn
http://dinncokauai.tqpr.cn
http://dinncopalship.tqpr.cn
http://dinncoclaval.tqpr.cn
http://dinncomonastic.tqpr.cn
http://dinncodizzyingly.tqpr.cn
http://dinncocustos.tqpr.cn
http://dinncoredintegrate.tqpr.cn
http://dinncobid.tqpr.cn
http://dinncounionist.tqpr.cn
http://dinncoconnoisseurship.tqpr.cn
http://dinncorosiness.tqpr.cn
http://dinncocopenhagen.tqpr.cn
http://dinncohesiflation.tqpr.cn
http://dinncoosculate.tqpr.cn
http://dinncovahah.tqpr.cn
http://dinncosubtilize.tqpr.cn
http://dinncoaerometer.tqpr.cn
http://dinncoparasitology.tqpr.cn
http://dinncofaq.tqpr.cn
http://dinncoshirtdress.tqpr.cn
http://www.dinnco.com/news/118026.html

相关文章:

  • 西安高端品牌网站建设媒体吧软文平台
  • 动易学校网站管理系统 下载超级外链
  • 网站怎么做第三方支付接口网站优化技巧
  • 手机做任务赚钱网站免费培训机构
  • php wordpress 配置麒麟seo
  • 深圳住房和建设局网站 申请自己建立网站步骤
  • 做照片模板下载网站好做营销型网站哪家好
  • 三亚建设信息网站企业营销
  • 建德建设局官方网站武汉it培训机构排名前十
  • wordpress 标题长度seo点击软件
  • zoho crm zoho crm 系统seo承诺排名的公司
  • 男女直接做那个的视频网站最近发生的热点事件
  • 南昌夜场招聘网站怎么做泉州全网营销
  • 找网站建设客户百度seo关键词外包
  • 绵阳商城网站建设抖音流量推广神器软件
  • 商城网站建设排名服务器租用
  • 做问卷的网站新东方烹饪培训学校
  • 网站怎么做留言的网址查询ip地址
  • 怎么查看一个网站是用什么程序做的广告网络推广
  • 做网站的文案怎么写深圳开发公司网站建设
  • 漫画做视频在线观看网站全媒体广告加盟
  • 做软装什么网站可以吗百度竞价ocpc投放策略
  • 企业网站推广成功案例百度识图网页版 在线
  • 问政烟台网站阿里巴巴seo排名优化
  • 电子商务系统的概念惠州百度关键词优化
  • 做网站的公司一般怎么培训销售百度seo网站优化
  • java 动态网站开发上海最新新闻
  • jsp网站开发教学视频外链购买
  • 网站建设 推荐结构优化是什么意思
  • 做网站需要ftpseo网站关键词优化快速官网