feat: qna page변수 수정
This commit is contained in:
parent
852d0efc2e
commit
e37088c7ee
@ -146,9 +146,9 @@ public class QnaController {
|
|||||||
@GetMapping("/all/{id}")
|
@GetMapping("/all/{id}")
|
||||||
public ResponseEntity<List<QnaResponseDto>> getAllQna(
|
public ResponseEntity<List<QnaResponseDto>> getAllQna(
|
||||||
@PathVariable Long id,
|
@PathVariable Long id,
|
||||||
@RequestParam(defaultValue = "0") int page) {
|
@RequestParam(defaultValue = "0") int pageNo) {
|
||||||
try {
|
try {
|
||||||
List<QnaResponseDto> qnaList = qnaService.getAllQnasByLecture(id, page, PAGE_SIZE);
|
List<QnaResponseDto> qnaList = qnaService.getAllQnasByLecture(id, pageNo, PAGE_SIZE);
|
||||||
return new ResponseEntity<>(qnaList, HttpStatus.ACCEPTED);
|
return new ResponseEntity<>(qnaList, HttpStatus.ACCEPTED);
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
return new ResponseEntity<>(HttpStatus.NOT_ACCEPTABLE);
|
return new ResponseEntity<>(HttpStatus.NOT_ACCEPTABLE);
|
||||||
|
@ -22,7 +22,7 @@ public interface QnaService {
|
|||||||
|
|
||||||
QnaResponseDto getQna(Long id, Long userId) throws SQLException;
|
QnaResponseDto getQna(Long id, Long userId) throws SQLException;
|
||||||
|
|
||||||
List<QnaResponseDto> getAllQnasByLecture(Long lectureId, int page, int pageNumber) throws SQLException;
|
List<QnaResponseDto> getAllQnasByLecture(Long lectureId, int pageNo, int pageNumber) throws SQLException;
|
||||||
|
|
||||||
QnaResponseDto createAnswer(Long id, QnaRequestDto qnaRequestDto) throws SQLException;
|
QnaResponseDto createAnswer(Long id, QnaRequestDto qnaRequestDto) throws SQLException;
|
||||||
|
|
||||||
|
@ -120,8 +120,8 @@ public class QnaServiceImpl implements QnaService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<QnaResponseDto> getAllQnasByLecture(Long lectureId, int page, int pageSize) {
|
public List<QnaResponseDto> getAllQnasByLecture(Long lectureId, int pageNo, int pageSize) {
|
||||||
Pageable pageable = PageRequest.of(page, pageSize);
|
Pageable pageable = PageRequest.of(pageNo, pageSize);
|
||||||
Page<Qna> qnaPage = qnaRepository.findByLectureId(lectureId, pageable);
|
Page<Qna> qnaPage = qnaRepository.findByLectureId(lectureId, pageable);
|
||||||
|
|
||||||
return qnaPage.getContent().stream()
|
return qnaPage.getContent().stream()
|
||||||
|
Loading…
Reference in New Issue
Block a user