zoukankan      html  css  js  c++  java
  • There is no getter for property named 'notice' in 'class com.game.domain.Notices'

    在插入数据时报错:There is no getter for property named 'notice' in 'class com.game.domain.Notices'

    四月 11, 2018 10:49:07 下午 org.apache.catalina.core.StandardWrapperValve invoke
    严重: Servlet.service() for servlet [springmvc] in context with path [/SpringDemo] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'notice' in 'class com.game.domain.Notices'] with root cause
    org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'notice' in 'class com.game.domain.Notices'
        at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:419)
        at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164)
        at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162)
        at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49)
        at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122)
        at org.apache.ibatis.reflection.MetaObject.metaObjectForProperty(MetaObject.java:145)
        at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:115)
        at org.apache.ibatis.executor.BaseExecutor.createCacheKey(BaseExecutor.java:219)
        at org.apache.ibatis.executor.CachingExecutor.createCacheKey(CachingExecutor.java:146)
        at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:82)
        at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
        at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
        at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:77)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    1. 数据库表

    2. Notices.java

    public class Notices implements Serializable{
        private Integer noticeID;
        private String noticeName;
        private String noticeContent;
        
        //setter and getter
    
    }

    3. SQL语句

    public String insertNotice(final Notices notice){
                
                return new SQL(){
                    {
                        INSERT_INTO("notices");
                        if(notice.getNoticeName() != null && !notice.getNoticeName().equals("")){
                            VALUES("noticeName", "#{notice.noticeName}");//notice.noticeName改成noticeName
                        }
                        if(notice.getNoticeContent() != null && !notice.getNoticeContent().equals("")){
                            VALUES("noticeContent", "#{notice.noticeContent}");//notice.noticeContent改成noticeContent
                        }
                    }
                }.toString();
            }

    原因:#{noticeContent}应该是取Notices的属性值,而不是取当前notice的属性值

  • 相关阅读:
    Send EMail from your .NET Application using your GMail Account
    ObjectContext 是开发人员在查询、添加和删除其实体实例以及将新状态保存回数据库时用到的主要构造
    AjaxPro使用说明
    .NET Framework 类库
    sysobjects syscolumns和SysTypes笔记
    javascript 懒加载技术(lazyload)简单实现
    WEB前端开发笔试题2
    css方框模型(盒模型Box Model)
    让IE支持CSS3选择器的方法(利用JS)
    让IE6/IE7/IE8浏览器支持CSS3属性
  • 原文地址:https://www.cnblogs.com/zeroingToOne/p/8799305.html
Copyright © 2011-2022 走看看