데이터베이스에 직접 접근하는 로직을 처리package com.sparta.springscheduler.repository;import com.sparta.springscheduler.dto.TaskResponseDto;import com.sparta.springscheduler.entity.Task;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.jdbc.core.RowMapper;import org.springframework.jdbc.support.GeneratedKeyHolder;import org.springframework.jdbc.support.KeyHolder;import org.springframewo..