Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

q&a pagination 구현. #15

Merged
merged 1 commit into from
Jul 31, 2015
Merged

q&a pagination 구현. #15

merged 1 commit into from
Jul 31, 2015

Conversation

scarfunk
Copy link
Contributor

간단한 pagination 구현해보았습니다.
이미 page가 backend상에 구현되있어서 백엔드는 거의 안만질려고 했는데..
jsp 에 익숙하질 않다보니 freemarker 가 어렵네요.

@devsejong
Copy link
Contributor

제가 github에 익숙하지 않아서 제대로 리뷰할 수 있는지는 잘 모르겠내요...

  1. 우선 프리마커를 잘 써주셔서 감사합니다. 익숙하지 않다고 하시면서 뚝딱 하시내요. :)
  2. 현재 page의 컨텐츠를 사용하는 questions와 totalPage를 가져오는 totalPage로 분리되어 있는데, 그냥 pagination객체를 가져와서 처리하는 방향으로 했으면 합니다. 하나의 모델로만 처리할 수 있도록요.
  3. UI를 부트스트랩의 pagination에 맞도록 수정해 주시고 리스트 제일 아래에 위치하도록 수정 부탁드립니다.

@@ -42,6 +42,7 @@ public String questions(

Page<Question> questionPage = questionRepository.findAll(new PageRequest(page - 1, size, Sort.Direction.DESC, "contents.createDate"));
model.addAttribute("questions", questionPage.getContent());
model.addAttribute("questionPage", questionPage.getTotalPages());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

model.addAttribute("questionPage", questionPage); 로 수정하면 좋을 듯 하내요.

@devsejong
Copy link
Contributor

저도 풀리퀘스트를 사용하여 작업을 진행하도록 할께요.
잘못된 부분은 바로 지적 부탁드립니다.

devsejong added a commit that referenced this pull request Jul 31, 2015
@devsejong devsejong merged commit 74de130 into codechobostudy:master Jul 31, 2015
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants