HibernateTemplate中如何实现模糊查询

2024-11-30 04:38:17
推荐回答(1个)
回答(1):

写个HQL语句
例如:"FROM Student where name LIKE '%"+ studentName +"%'";
然后查询.