让mybatis在执行SQL语句时可以插入null值

在mybatis中,SQL语句在插入时默认不允许插入null值,如果在页面中传过来null值,在插入操作时会报错

org.apache.ibatis.exceptions.PersistenceException:

### Error updating database.  Cause: org.apache.ibatis.type.TypeException: Error setting null for parameter #4 with JdbcType OTHER . Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. Cause: java.sql.SQLException: 无效的列类型: 1111

### The error may involve dao.CarDao.addCar-Inline

### The error occurred while setting parameters

让mybatis在执行SQL语句时可以插入null值_第1张图片

如果要想可以插入null值,只需要在主配置文件中如下配置:

	
		
		
		
	入时默认不允许插入null值

 

你可能感兴趣的:(框架)