본문 바로가기
SMALL

Java267

Mybatis) resultMap 사용하기 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. select * from student where deleted_at is null and no = #{no} resultMap으로 변환 select * from student where deleted_at is null and no = #{no} resultType이 Map인 경우 url-command.properties /student/studentMap.do = com.ce.app.student.controller.StudentMapController Controller StudentMapController @Log4j @RequiredArgsConstructor public clas.. 2022. 8. 8.
Mybatis) 학생 정보 변경 및 삭제하기 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. 학생 정보 변경하기 url-command.properties /student/updateStudent.do = com.ce.app.student.controller.StudentUpdateController Controller StudentUpdateController public class StudentUpdateController extends AbstractController { static final Logger log = Logger.getLogger(StudentUpdateController.class); private StudentService studentService; pu.. 2022. 8. 8.
Mybatis) 총 학생 수 조회, 학생 정보 한 건 조회 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. 총 학생 수 조회 url-command.properties /student/selectOne.do = com.ce.app.student.controller.SelectOneController Controller SelectOneController public class SelectOneController extends AbstractController { static final Logger log = Logger.getLogger(SelectOneController.class); private StudentService studentService; public SelectOneControl.. 2022. 8. 5.
Mybatis) 학생 정보 등록 - MAP 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. 학생 정보 등록 - MAP studentEnroll.jsp 학생등록(MAP) 학생이름 전화번호 Controller StudentMapEnrollController public class StudentMapEnrollController extends AbstractController { static final Logger log = Logger.getLogger(StudentMapEnrollController.class); private StudentService studentService; public StudentMapEnrollController(StudentService student.. 2022. 8. 5.
Mybatis) 학생 정보 등록 - DTO (별칭 등록, Mybatis 내장별칭) 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. ※ mybatis 설정파일 관련 아래 포스팅 참고 https://chanychu.tistory.com/354?category=991746 Mybatis) Mybatis 사용법, 설정파일 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. Mybatis - 데이터의 입력, 조회, 수정, 삭제 (CRUD)를 보다 편하게 하기 위해 xml chanychu.tistory.com sql --================================= -- mybatis --================================= c.. 2022. 8. 5.
Mybatis) Mybatis 사용법, 설정파일 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. Mybatis - 데이터의 입력, 조회, 수정, 삭제 (CRUD)를 보다 편하게 하기 위해 xml로 구조화한 Mapper 설정 파일을 통해 JDBC를 구현한 영속성 프레임워크 ※ Mybatis API 사이트 https://mybatis.org/mybatis-3/ko/getting-started.html MyBatis – 마이바티스 3 | 시작하기 mybatis.org ※ 위 사이트를 참고하여 설정파일 내용을 작성할 수 있음 mybatis-config.xml과 mapper.xml 설정 파일이 필수로 있어야하며, Maven을 이용하여 Mybatis 파일을 클래스패스에 추가하겠습니다. org.m.. 2022. 8. 4.
LIST