Service 클래스 (비즈니스 로직)package com.example.board.service;import com.example.board.entity.Board;import com.example.board.repository.BoardRepository;import org.springframework.data.domain.Page;import org.springframework.data.domain.PageRequest;import org.springframework.data.domain.Pageable;import org.springframework.data.domain.Sort;import org.springframework.stereotype.Service;import java.util.Lis..