zhuye

Results 2 comments of zhuye

我也遇到了同样的问题,使用的是spring-boot-starter-webflux 和 sa-token-reactor-spring-boot3-starter 1.39.0 ``` java /** * 在当前线程的 SaRequest 包装对象 * * @return / */ public static SaRequest getRequest() { return getBoxNotNull().getRequest(); } /** * 在当前线程的 SaResponse 包装对象 *...

> 以下方法执行失败报错:未能获取有效的上下文 ``` java public Mono login(AccountDTO accountDTO) { return Mono.just(accountDTO) .flatMap(dto -> { if (StrUtil.isNotBlank(dto.getMail())) { return getByMail(dto.getMail()); } else if (StrUtil.isNotBlank(dto.getUsername())) { return getByUsername(dto.getUsername()); } else { return...