본문 바로가기
Programming | Study/Mybatis

[Mybatis] Parameter - #{value}

by jinju 2021. 9. 24.

 

바뀌는 Parameter를 사용할 때 mybatis는  #{value} 를 지원한다

자동으로 ''따옴표도 입력됨

 

<select id="userId" parameterType="String" resultType="Integer">

 

select * from user where user_id = #{value}

 

<select>

 

#{value} 는 문자열로만 인식된다.

 

 

https://mybatis.org/mybatis-3/ko/sqlmap-xml.html

'Programming | Study > Mybatis' 카테고리의 다른 글

MyBatis  (0) 2021.10.11

댓글