这是来自一个流行的例子。
<!-- 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'
任何人都可以帮忙。