91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Lombok的坑有哪些

發布時間:2020-10-12 14:50:01 來源:億速云 閱讀:167 作者:小新 欄目:編程語言

Lombok的坑有哪些?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!

序言

去年在項目當中引入了Lombok插件,著實解放了雙手,代替了一些重復的簡單工作(Getter,Setter,toString等方法的編寫),但是,在使用的過程當中,也發現了一些坑,開始的時候并沒有察覺到是Lombok的問題,后來跟蹤了對應的其他組件的源碼,才發現是Lombok的問題!

Setter-Getter方法的坑

問題發現

我們在項目當中主要使用Lombok的Setter-Getter方法的注解,也就是組合注解@Data,但是在一次使用Mybatis插入數據的過程當中,出現了一個問題,問題描述如下:

我們有個實體類:
@Data
public class NMetaVerify{
    private NMetaType nMetaType;
    private Long id;
    ....其他屬性
}復制代碼

當我們使用Mybatis插入數據的時候,發現,其他屬性都能正常的插入,但是就是nMetaType屬性在數據庫一直是null.

解決

當我debug項目代碼到調用Mybatis的插入SQL對應的方法的時候,我看到NMetaVerify對象的nMetaType屬性還是有數據的,但是執行插入之后,數據庫的nMetaType字段就是一直是null,原先我以為是我的枚舉類型寫法不正確,看了下別的同樣具有枚舉類型的字段,也是正常能插入到數據庫當中的,這更讓我感覺到疑惑了.于是,我就跟蹤Mybatis的源碼,發現Mybatis在獲取這個nMetaType屬性的時候使用了反射,使用的是getxxxx方法來獲取的,但是我發現nMetaType的get方法好像有點和Mybatis需要的getxxxx方法長的好像不一樣.問題找到了!

原因

Lombok對于第一個字母小寫,第二個字母大寫的屬性生成的get-set方法和Mybatis以及idea或者說是Java官方認可的get-set方法生成的不一樣:

#Lombok生成的Get-Set方法
@Data
public class NMetaVerify {
    private Long id;
    private NMetaType nMetaType;
    private Date createTime;
    
    public void lombokFound(){
        NMetaVerify nMetaVerify = new NMetaVerify();
        nMetaVerify.setNMetaType(NMetaType.TWO); //注意:nMetaType的set方法為setNMetaType,第一個n字母大寫了,
        nMetaVerify.getNMetaType();                                  //getxxxx方法也是大寫
    }
}復制代碼
#idea,Mybatis,Java官方默認的行為為:
public class NMetaVerify {
    private Long id;
    private NMetaType nMetaType;
    private Date createTime;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public NMetaType getnMetaType() {//注意:nMetaType屬性的第一個字母小寫
        return nMetaType;
    }

    public void setnMetaType(NMetaType nMetaType) {//注意:nMetaType屬性的第一個字母小寫
        this.nMetaType = nMetaType;
    }

    public Date getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}復制代碼
Mybatis(3.4.6版本)解析get-set方法獲取屬性名字的源碼:
package org.apache.ibatis.reflection.property;

import java.util.Locale;

import org.apache.ibatis.reflection.ReflectionException;

/**
 * @author Clinton Begin
 */
public final class PropertyNamer {

        private PropertyNamer() {
            // Prevent Instantiation of Static Class
        }

        public static String methodToProperty(String name) {
            if (name.startsWith("is")) {//is開頭的一般是bool類型,直接從第二個(索引)開始截取(簡單粗暴)
                    name = name.substring(2);
            } else if (name.startsWith("get") || name.startsWith("set")) {//set-get的就從第三個(索引)開始截取
                    name = name.substring(3);
            } else {
                    throw new ReflectionException("Error parsing property name '" + name + "'.  Didn't start with 'is', 'get' or 'set'.");
            }
            //下面這個判斷很重要,可以分成兩句話開始解釋,解釋如下
            //第一句話:name.length()==1
            //                      對于屬性只有一個字母的,例如private int x;
            //                      對應的get-set方法是getX();setX(int x);
            //第二句話:name.length() > 1 && !Character.isUpperCase(name.charAt(1)))
            //                      屬性名字長度大于1,并且第二個(代碼中的charAt(1),這個1是數組下標)字母是小寫的
            //                      如果第二個char是大寫的,那就直接返回name
            if (name.length() == 1 || (name.length() > 1 && !Character.isUpperCase(name.charAt(1)))) {
                    name = name.substring(0, 1).toLowerCase(Locale.ENGLISH) + name.substring(1);//讓屬性名第一個字母小寫,然后加上后面的內容
            }

            return name;
        }

        public static boolean isProperty(String name) {
                return name.startsWith("get") || name.startsWith("set") || name.startsWith("is");
        }

        public static boolean isGetter(String name) {
                return name.startsWith("get") || name.startsWith("is");
        }

        public static boolean isSetter(String name) {
                return name.startsWith("set");
        }

}復制代碼
Mybatis解析get-set方法為屬性名字測試
    @Test
    public void foundPropertyNamer() {
        String isName = "isName";
        String getName = "getName";
        String getnMetaType = "getnMetaType";
        String getNMetaType = "getNMetaType";

        Stream.of(isName,getName,getnMetaType,getNMetaType)
                .forEach(methodName->System.out.println("方法名字是:"+methodName+" 屬性名字:"+ PropertyNamer.methodToProperty(methodName)));
    }
    
    #輸出結果如下:
    方法名字是:isName 屬性名字:name 
    方法名字是:getName 屬性名字:name 
    方法名字是:getnMetaType 屬性名字:nMetaType //這個以及下面的屬性第二個字母都是大寫,所以直接返回name
    方法名字是:getNMetaType 屬性名字:NMetaType復制代碼

解決方案

1.修改屬性名字,讓第二個字母小寫,或者說是規定所有的屬性的前兩個字母必須小寫
2.如果數據庫已經設計好,并且前后端接口對接好了,不想修改,那就專門為這種特殊的屬性使用idea生成get-set方法復制代碼

@Accessor(chain = true)注解的問題

問題發現

在使用easyexcel(github.com/alibaba/eas…) 導出的時候,發現以前的實體類導出都很正常,但是現在新加的實體類不正常了,比對了發現,新加的實體類增加了@Accessor(chain = true)注解,我們的目的主要是方便我們鏈式調用set方法:

new UserDto()
.setUserName("")
.setAge(10)
........
.setBirthday(new Date());復制代碼

原因

easyexcel底層使用的是cglib來做反射工具包的:

com.alibaba.excel.read.listener.ModelBuildEventListener 類的第130行
BeanMap.create(resultModel).putAll(map);

最底層的是cglib的BeanMap的這個方法調用

abstract public Object put(Object bean, Object key, Object value);復制代碼

但是cglib使用的是Java的rt.jar里面的一個Introspector這個類的方法:

# Introspector.java 第520行
if (int.class.equals(argTypes[0]) && name.startsWith(GET_PREFIX)) {
   pd = new IndexedPropertyDescriptor(this.beanClass, name.substring(3), null, null, method, null);
   //下面這行判斷,只獲取返回值是void類型的setxxxx方法
 } else if (void.class.equals(resultType) && name.startsWith(SET_PREFIX)) {
    // Simple setter
    pd = new PropertyDescriptor(this.beanClass, name.substring(3), null, method);
    if (throwsException(method, PropertyVetoException.class)) {
       pd.setConstrained(true);
    }
}復制代碼

解決方案

1.去掉Accessor注解
2.要么就等待easyexcel的作者替換掉底層的cglib或者是其他,反正是支持獲取返回值不是void的setxxx方法就行復制代碼

感謝各位的閱讀!看完上述內容,你們對Lombok的坑有哪些大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

双流县| 霸州市| 聂拉木县| 阳泉市| 宜兰县| 博湖县| 高台县| 靖宇县| 龙岩市| 黔西| 剑阁县| 汨罗市| 青海省| 米脂县| 华池县| 阿尔山市| 神农架林区| 古田县| 遵义县| 鹿泉市| 六枝特区| 镇远县| 文昌市| 固阳县| 永修县| 兴国县| 高阳县| 宁河县| 武清区| 连江县| 万盛区| 兴城市| 保德县| 司法| 兴文县| 苗栗市| 焦作市| 古田县| 密山市| 秭归县| 合肥市|