如何在MyBatis插入查询中手动插入null

时间:2013-11-07 05:54:45

标签: mybatis

这是一个流行的例子。

    <!-- Insert example, using the Account parameter class -->
<insert id="insertAccount" parameterType="Account">
  insert into ACCOUNT (
ACC_ID,
ACC_FIRST_NAME,
ACC_LAST_NAME,
ACC_EMAIL
)values (
    #{id}, #{firstName}, #{lastName}, #{emailAddress}

我想手动为其中一个字段插入null。

   <!-- Insert example, using the Account parameter class -->
<insert id="insertAccount" parameterType="Account">
  insert into ACCOUNT (
ACC_ID,
ACC_FIRST_NAME,
ACC_LAST_NAME,
ACC_EMAIL
)values (
    #{id}, #{firstName}, #{lastName}, #{null}

) 但是我得到了这个例外

   org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'null'

任何人都可以提供帮助。

1 个答案:

答案 0 :(得分:2)

MyBatis使用#{propertyName}来定义属性。如果使用名称“NULL”,它会查找getNull()和setNull(...)或命名参数或映射。但是,如果在您的情况下该值始终为null,则可以省略该值,就好像您在数据库中没有该列的默认值一样。

<insert id="insertAccount" parameterType="Account">
  insert into ACCOUNT (
ACC_ID,
ACC_FIRST_NAME,
ACC_LAST_NAME
)values (
    #{id}, #{firstName}, #{lastName}
);

或者以与SQL命令相同的方式输入确切的值:

<insert id="insertAccount" parameterType="Account">
  insert into ACCOUNT (
ACC_ID,
ACC_FIRST_NAME,
ACC_LAST_NAME,
ACC_EMAIL
)values (
    #{id}, #{firstName}, #{lastName}, null
);