一、快捷命令
idea快速删除文件空行
ctrl+R
进行内容替换,使用正则表达式:^\s*\n
--> 空
二、异常问题记录
java.beans.IntrospectionException: Method not found: getId
1. 出现场景
new PropertyDescriptor(propertyName, beanClass) 方法抛出异常
2.原因
实体类为了实现链式编程,使用了 Lombok 中的 @Accessors(chain = true)
,使得get/set方法返回的是对象本身而不是默认的void
3.解决方法
去掉 @Accessors(chain = true)
注解