When prompted PersistenceException MyBatis frame using the insert inserted into the user data table

Error message:

org.apache.ibatis.exceptions.PersistenceException:
### Error updating database.  Cause: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'createBy' in 'class cn.smbms.pojo.User'
### The error may involve cn.smbms.dao.user.UserMapper.add-Inline
### The error occurred while setting parameters
### SQL: insert into smbms_user (userCode,userName,userPassword,   gender,birthday,phone,address,userRole,   creationDate,createBy) values(?,?,   ?,?,?,?,?,   ?,?,?)
### Cause: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'createBy' in 'class cn.smbms.pojo.User'
     at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:23)
     at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:150)
     at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:137)
     at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:46)
     at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:43)
     at com.sun.proxy.$Proxy4.add(Unknown Source)
     at cn.smbms.dao.user.UserMapperTest.testAdd(UserMapperTest.java:188)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
     at java.lang.reflect.Method.invoke(Method.java:606)
     at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
     at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
     at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
     at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
     at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
     at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
     at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
     at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
     at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
     at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
     at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
     at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
     at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
     at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
     at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
     at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
     at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
     at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
     at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'createBy' in 'class cn.smbms.pojo.User'
     at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:377)
     at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:167)
     at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:149)
     at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:45)
     at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:113)
     at org.apache.ibatis.scripting.defaults.DefaultParameterHandler.setParameters(DefaultParameterHandler.java:72)
     at org.apache.ibatis.executor.statement.PreparedStatementHandler.parameterize(PreparedStatementHandler.java:77)
     at org.apache.ibatis.executor.statement.RoutingStatementHandler.parameterize(RoutingStatementHandler.java:58)
     at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:71)
     at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:44)
     at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:100)
     at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:75)
     at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:148)
     ... 28 more

wrong reason:

<insert id="add" parameterType="user">
         insert into smbms_user (userCode,userName,userPassword,
         gender,birthday,phone,address,userRole,
         creationDate,createBy) values(#{userCode},#{userName},
         #{userPassword},#{gender},#{birthday},#{phone},#{address},
         #{userRole},#{creationDate},#{createBy})
     </insert>

Here createBy user.java and the user table createdBy inconsistent, leading to more errors, the above-described code error is no longer createBy into createdBy

Guess you like

Origin www.cnblogs.com/pere/p/11651957.html