예제 #1
0
파일: TaskService.java 프로젝트: kayxu/hero
 @Transactional(readOnly = false)
 public void deleteTask(Long id) {
   taskDao.delete(id);
 }