部落格分頁 根據是否發布來查詢資料

2021-10-04 11:55:18 字數 1198 閱讀 6519

public

inte***ce

articledao

extends

jparepository

, jpaspecificationexecutor

@service

public

class

articleserviceimpl

implements

articleservice

}

@controller

public

class

blogcontroller

)public string blog

(model model)

("/blog/"

)public string blog

(model model,

@pathvariable integer pagenumber)

page

articlepage = articleservice.

findblogarticlelist

(pagenumber-

1,constants.defaultpagesize )

; list

articlelist = articlepage.

getcontent()

; model.

addattribute

("articlelist"

, articlelist)

; model.

addattribute

("totalcount"

, articlepage.

gettotalelements()

);model.

addattribute

("pagenumber"

, pagenumber)

;return

"blog";}

}

@cacheable是spring cache快取的一部分,spring cache快取的核心思想是:當我們在呼叫乙個快取方法時,會把該方法引數和返回結果作為乙個鍵值對存放在快取中,等到下次利用同樣的引數來呼叫該方法時將不再執行該方法,而是直接從快取中獲取結果進行返回

根據月份等資訊來查詢資料

1.設定樣式,插入元件 style inline true class border form label 車型 v model searchcondition.vehiclemodel placeholder 選擇車型 change style margin right 10px clearabl...

bmob根據時間排序分頁查詢多條資料

bmobobject預設有 createdat,updatedat時間字段,儲存這個bmobobject物件的生成時間和更新時間。bmob開發文件的時間查詢示例為 如果想查詢指定日期之前的資料,則可以使用addwherelessthan或者addwherelessthanorequalto 包含當天...

MySQL百萬資料,你如何用分頁來查詢資料

在開發過程中我們經常會使用分頁,核心技術是使用limit進行資料的讀取,在使用limit進行分頁的測試過程中,得到以下資料 select from news order by id desc limit 0,10 耗時0.003秒 select from news order by id desc ...