2025年6月27日
摘要: SonarQube 的提示 Use a thread-safe type; adding 'volatile' is not enough to make this field thread-safe 指出:volatile 仅能保证对象引用的可见性,但无法保证对象内部状态的线程安全。由于 Conf 阅读全文
posted @ 2025-06-27 14:56 平凡码农 阅读(19) 评论(0) 推荐(0)
摘要: Sonar报错 “Use a thread-safe type; adding 'volatile' is not enough to make this field thread-safe” 的根本原因是:volatile 仅保证字段的可见性(一个线程修改后其他线程立即可见),但无法保证复合操作的 阅读全文
posted @ 2025-06-27 14:23 平凡码农 阅读(103) 评论(0) 推荐(0)
摘要: Sonar报错 “Use a thread-safe type; adding 'volatile' is not enough to make this field thread-safe” 表示当前字段在多线程环境下存在线程安全问题,仅添加 volatile 无法保证复合操作(如“先检查后执行” 阅读全文
posted @ 2025-06-27 14:21 平凡码农 阅读(80) 评论(0) 推荐(0)
摘要: 前端开发绕不开的坎,浏览器安全策略下的跨域问题,一文掌握所有破解之道 作为前端开发者,你一定遇到过这样的场景:本地开发环境中,你的应用运行在 http://localhost:3000,而需要访问的API服务却在 http://api.example.com。当你信心满满地发起请求时,浏览器控制台却 阅读全文
posted @ 2025-06-27 10:26 平凡码农 阅读(364) 评论(0) 推荐(0)
摘要: 前端开发绕不开的坎,浏览器安全策略下的跨域问题,一文掌握所有破解之道 作为前端开发者,你一定遇到过这样的场景:本地开发环境中,你的应用运行在 http://localhost:3000,而需要访问的API服务却在 http://api.example.com。当你信心满满地发起请求时,浏览器控制台却 阅读全文
posted @ 2025-06-27 10:12 平凡码农 阅读(152) 评论(0) 推荐(0)