1. 程式人生 > >boolean型別資料庫儲存0,1頁面返回true,false

boolean型別資料庫儲存0,1頁面返回true,false

資料庫中定義欄位是bit型別(長度為1),裡面預設值設定為" b'0' ",內容可以是0,1.但是資料在頁面返回的是true,false

    /**
     * 標識位
     */
    private boolean changed = false;

    @Column(name = "is_changed")  //返回欄位名為changed,資料庫中的欄位名為"is_changed"
    public boolean isChanged() {
        return changed;
    }

    public void setChanged(boolean changed) {
        this.changed = changed;
    }