随笔分类 -  开发常用

摘要:场景: 最近业余在学习dubbo的最新版本,下载官方的samples项目(https://github.com/apache/dubbo-samples) 打开时遇到一个问题,IDEA打开项目一直卡在reading maven projects,等了15分钟还是卡在那里。 IDEA版本:2020.2 阅读全文
posted @ 2020-11-10 21:45 cdfive 阅读(3122) 评论(0) 推荐(0)
摘要:Chrome的F12开发者工具,在Source标签页可以对js的某行打断点进行调试。 当页面和js是iframe引入的,可能会找不到页面对应的js文件。 解决方法: 切换JavaScript Context,如图: 在页面的顶部增加//@ sourceURL=Xxx.js,其中Xxx.js是对应的j 阅读全文
posted @ 2020-11-08 14:57 cdfive 阅读(1337) 评论(0) 推荐(0)
摘要:常用 spring start https://start.spring.io/ spring-boot配置 https://docs.spring.io/spring-boot/docs/2.1.0.RELEASE/reference/htmlsingle/#common-application- 阅读全文
posted @ 2020-02-17 15:31 cdfive 阅读(167) 评论(0) 推荐(0)
摘要:场景 Bean定义如下,仅有一个类型为Integer的age字段。 @NoArgsConstructor @AllArgsConstructor(staticName = "of") @Data public static class Employee { private Integer age; 阅读全文
posted @ 2019-05-26 22:29 cdfive 阅读(3827) 评论(0) 推荐(1)