replyservicetests1 [IntelliJ_Springboot] ReplyServiceTests, ReplyRepositoryTests 1. ReplyRepository 인터페이스 코드public interface ReplyRepository extends JpaRepository{} 2. ReplyService 인터페이스 코드public interface ReplyService { Long register(ReplyDTO replyDTO); ReplyDTO readOne(Long rno); void modify(ReplyDTO replyDTO); void remove(Long rno);} 3. ReplyServiceImpl 클래스 코드@Service@RequiredArgsConstructor@Transactionalpublic class ReplyServiceImpl implements ReplyService { .. Coding 공부/IntelliJ 2024. 5. 22. 이전 1 다음 728x90 반응형