
Java-Web
吴さん
有道无术术可求,有术无道止于术
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
接口函数绑定错误
接口函数绑定错误问题描述org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.imooc.o2o.dao.PersonInfoDao.getPersonInfoById错误提示说MyBatis绑定错误或者没有找到被绑定的函数。dao层的接口函数:/** * 通过用户ID...原创 2020-02-02 15:47:20 · 201 阅读 · 0 评论 -
用HQL语句实现多表联查和返回DTO对象
用HQL语句实现多表联查和返回DTO对象当需要join多个表的时候,如何写HQLSQLselect * from P_GROUP g left join P_DEPT d on d.P_UID = g.P_UID left join P_PATIENT p on d.P_NO = p.P_NOwhere p.CARD_TYPE = '1' and...原创 2019-12-31 22:50:14 · 1868 阅读 · 0 评论 -
验证码工具kaptcha的使用方法
验证码工具kaptcha的使用方法在pom.xml中添加依赖<dependency> <groupId>com.github.penggle</groupId> <artifactId>kaptcha</artifactId> <version>2.3.2</version></depend...原创 2019-12-01 10:28:02 · 591 阅读 · 0 评论