小慧机~~~ 2021-04-08 21:23 采纳率: 100%
浏览 32
已结题

研究半天没有找出来问题出在哪里

mapper.xml

<select id="selectlike" resultType="com.rj.entity.Student">
    select * from student WHERE sname LIKE '${sname}%'
</select>
<select id="selectwhere" resultType="com.rj.entity.Student">
    select * from  student
    <where>
        <if test="stu.sname !=null and stu.sname !=''">
            sname LIKE '${stu.sname}%'
        </if>
        <if test="stu.sno !=null and stu.sno !=''">
            AND sno LIKE '${stu.sno}%'
        </if>
    </where>
</select>

dao

public  List<Student> selectwhere(@Param("stu") Student stu);

service

public  List<Student> selectwhere(Student stu) throws IOException;

serviceimpl

public List<Student> selectwhere(Student stu) throws IOException {
    SqlSession session = MyBatisUtil.getSqlSession();
    //创建dao层对象 代理模式(反射)
    IStudentDao dao=session.getMapper(IStudentDao.class);
    //调用dao层提供的方法
    List<Student> list =dao.selectwhere(stu);
    //关闭session
    MyBatisUtil.close();
    return list;
}

testmain

//调用service
IStudentService service = new IStudentServiceImpl();
//List<Student> students = service.selectAllList();
Student student=new Student();
student.setSname("王");
student.setSno("19");
//模糊查询
// List<Student> students=service.selectlike(student);
//多条件查询
List<Student> students=service.selectwhere(student);
//打印输出
System.out.println(students);

总是报这个错是怎么会是呢

Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.apache.ibatis.builder.BuilderException: Error evaluating expression 'stu.sno !=null and stu.sno !='''. Cause: org.apache.ibatis.ognl.NoSuchPropertyException: com.rj.entity.Student.sno
### Cause: org.apache.ibatis.builder.BuilderException: Error evaluating expression 'stu.sno !=null and stu.sno !='''. Cause: org.apache.ibatis.ognl.NoSuchPropertyException: com.rj.entity.Student.sno

  • 写回答

1条回答 默认 最新

  • 风雨编码路 2021-04-09 16:56
    关注

    org.apache.ibatis.ognl.NoSuchPropertyException: com.rj.entity.Student.sno,看看Student对象的sno属性有没有get方法

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 2月23日
  • 已采纳回答 2月15日

悬赏问题

  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。