日常笔记
凤舞九天音乐工厂
这个作者很懒,什么都没留下…
展开
-
swagger ui 一次性地展开全部接口
swagger ui 一次性地展开全部接口原创 2022-07-13 17:11:28 · 1140 阅读 · 1 评论 -
Java currentTimeMillis() 对比 nanoTime()
简述 System 类中 currentTimeMillis() 和 nanoTime() 的一般用法。 // // 两次调用可能输出相同的值 System.out.println(System.currentTimeMillis()); System.out.println(System.currentTimeMillis()); // 纳秒更加精确 System.out.println(System.nanoTime()); System.out.println(Syst原创 2021-07-01 14:41:01 · 611 阅读 · 0 评论 -
IDEA Jrebel 搭配Tomcat热部署失效问题解决
写在前面 文章写于2021/04/06,参考其他IDEA 使用 Jrebel 配置后写下。 环境 IDEA-U版本2020.3, Jrebel 2021.1.2,Tomcat 7 问题 Jrebel 以debug启动,代码修改后, update 无效,代码没有及时更新,只能redeploy 且在spring boot 开发时jrebel 正常使用,故怀疑是不是web项目其他地方干扰了热部署 分析 查看tomcat配置,打开了javascript debugger ,这个调试器和jrebel的原创 2021-04-06 10:31:51 · 1051 阅读 · 0 评论