Heim  >  Fragen und Antworten  >  Hauptteil

java - mybatis insert into select from where 子句中的参数无法作用

insert into中嵌套select子句,select中的where子句无法使用参数!
是mybatis无法识别出来吗

mapper.xml:

测试:

无法插入:

修改mapper.xml:

可以插入:

ProductProcess类:

PHP中文网PHP中文网2763 Tage vor768

Antworte allen(2)Ich werde antworten

  • 高洛峰

    高洛峰2017-04-18 10:31:30

    看起来像是你在 new ProductProcess(...) 的时候, materialNameblenderName 传反了?

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-04-18 10:31:30

    // 在你的 mybatis 实现的 DAO 接口中的参数前增加注解
    @Param("materialName"), @Param("blenderName")

    Antwort
    0
  • StornierenAntwort