org.apache.ibatis.reflection.ReflectionException: There is no getter for propert
解决方案:引起问题的原因是因为在SQL语句中定义的参数与实体中定义的属性不一致导致的,比如DAO方法定义的是:publicvoidaddVoteContent(VoteContentvoteContent);SQL语句如下:insertintovote_content(content,count,theme_id)value(#{content},#{count},#{theme_id}) Use