Fetched SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@789d1b54] from current transaction
Releasing transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@789d1b54]
Transaction synchronization deregistering SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@789d1b54]
Transaction synchronization closing SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@789d1b54]
2022-04-26 17:27:46.741 ERROR 15828 --- [io-19004-exec-2] n.y.c.config.GlobalExceptionHandler : org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException:
### Error updating database. Cause: java.lang.NullPointerException
### The error may exist in *******/*******/*******/mapper/*********.java (best guess)
### The error may involve *******.*******.*******.mapper.*******.updateById
### The error occurred while executing an update
### Cause: java.lang.NullPointerException
at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)
at com.sun.proxy.$Proxy143.update(Unknown Source)
at org.mybatis.spring.SqlSessionTemplate.update(SqlSessionTemplate.java:288)
at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:64)
我出现这个的情况是因为我们的权限框架有问题,
?
自动填充的PO字段填充获取userName的时候报了空指针
你可以把你们项目的获取username的方法注释掉或者返回一个默认值试一试,看是不是同样的原因.
相应的你可以检查一下其他PO自动填充的字段是否有问题
我还在其他帖子见到,如果表的列[VARCHAR(10)]长度短于insert的字段长度也会报空指针.
?
|