Salut, je suis nouveau sur myBatis.
J'utilise MyBatis et Spring avec mybatis-spring.
Comment passer deux types d'objets différents en tant que paramètres et comment utiliser leurs propriétés dans la requête?
<update id="update" parameterType="A, B"> <!-- @@? -->
UPDATE SOME WHERE x=A.x AND y=B.y <!-- @@? -->
</update>
Ne spécifiez pas parameterType
mais utilisez @Param
annotation sur les paramètres du mappeur:
@Mapper
public interface MyMapper {
void update(@Param("a") A a, @Param("b") B b);
...
}
Puis référencez-les dans la cartographie:
<update id="update" >
UPDATE SOME WHERE x=#{a.x} AND y=#{b.y}
</update>
Utilisez parameterType = "map" et annotation @Param.
Méthode déclarée dans l'interface:
void mapCategoryAndPage(@Param("categoryLocalId") Long categoryLocalId, @Param("pageLocalId") Long localId);
Il n'est pas nécessaire que la valeur de l'annotation @Param soit égale au nom du paramètre
<insert id="mapCategoryAndPage" parameterType="map">
INSERT INTO
category_page_mapping (
page_local_id,
category_local_id)
VALUES
(#{pageLocalId},
#{categoryLocalId});
</insert>