loading

摘要: file:[SwaggerConfig.java] /** * @description: * @package: com.bleuon.config * @author: zheng * @date: 2023/10/13 */ @Configuration public class Swagge 阅读全文
posted @ 2023-10-13 20:58 Himmelbleu 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 描述 watch 函数监听路由变化,当路由参数发生变化之后,重新调用 fetchData 获取数据渲染页面。 A 页面切换到 B 页面时,A 页面的 watch 会被触发,导致报错。这是因为进入其他页面之前,已经捕捉到了路由变化,而又没有清除这个 watch 监听。 清除 watch 你可以在进入其 阅读全文
posted @ 2023-10-13 17:43 Himmelbleu 阅读(170) 评论(0) 推荐(0) 编辑
摘要: @EnableGlobalMethodSecurity(prePostEnabled = true) 已经被弃用了,最新的是:@EnableMethodSecurity。 file:[SecurityConfig.java] @Configuration @EnableWebSecurity add 阅读全文
posted @ 2023-10-13 01:18 Himmelbleu 阅读(20) 评论(0) 推荐(0) 编辑