1. Mybatis
https://ccomccomhan.tistory.com/130
[JAVA] - MyBatis란?, 마이바티스란?(예제코드) 간단하고 쉽게 이해하기
🧹 간단 정리 MyBatis를 사용하면 DB를 쉽게 다룰 수 있다. 예시) preparedstatement처럼 쿼리문을 복잡하게 입력하지 않고 실제 쿼리문과 유사하게 작성할 수 있다. preparedstatement : "UPDATE users SET name =?, e
ccomccomhan.tistory.com
2. thymeleaf
https://www.thymeleaf.org/doc/tutorials/3.1/thymeleafspring.html
Tutorial: Thymeleaf + Spring
Preface This tutorial explains how Thymeleaf can be integrated with the Spring Framework, especially (but not only) Spring MVC. Note that Thymeleaf has integrations for both versions 5.x and 6.x of the Spring Framework, provided by two separate libraries c
www.thymeleaf.org
3. thymeleaf를 이용하여 get방식으로 파라미터 전달하기
<a th:href="@{/MappingURL(Param.name=${value})}"></a>
4. Mybatis parameterType, resultType, resultMap
https://velog.io/@gga4638/MyBatis-parameterType-resultType-resultMap
[MyBatis] parameterType, resultType, resultMap
표기: \`- 구문에 전달될 파라미터의 패키지 경로를 포함한 클래스명 혹은 alias 작성생략가능(Optional)구문에 의해 리턴되는 타입의 패키지 경로를 포함한 전체 클래스명이나 alias간단한 구문에서
velog.io