-
[Mybatis ] 클래스[ex)DTO] 를 새로 만들지 않고도 파라미터 2개 넘기는 방법Spring 2019. 3. 12. 19:58
Mppaer 인터페이스에서는
User getUserFromUser(@Param("id") int id, @Param("username") String userName);
mapper.xml 파일에서는
<select id=”getUserFromUser” parameterType=”map” resultType=”User”>
select id, username
from User
where id = #{id}
and userName = #{username}
</select>'Spring' 카테고리의 다른 글
Spring IoC와 DI에 관하여 (0) 2023.02.20 Spring Boot 구글 OAuth2 로그인 구현 방법(spring-securify-oauth2) (0) 2023.02.16 Spring에서 Service class를 만들때 반드시 Interface를 구현해야할까 (0) 2020.02.28 Spring에서 DBMS별 mybatis LIKE문 사용법 (0) 2019.03.13 Spring(Java) 실행시간 측정 (0) 2019.03.08