1. 程式人生 > >blob型別資料如何在springmvc中獲取顯示

blob型別資料如何在springmvc中獲取顯示

blob型別是陣列型別,展示在前端需要轉成字串型別

使用方法可以在實體類中定義一個新的String型別的欄位,然後通過get方法得到blob型別欄位的值,然後後面的操作都使用這個新的欄位即可

 private byte[] contentText;
    
    private String contentTextShow;
    
    public String getContentTextShow() {
        return new String(contentText,StandardCharsets.UTF_8);
    }

如果想要使用blob欄位的部分資料,可以通過正