mybatis
文章平均质量分 58
架构师Rakic
java疑难杂症?不存在的
展开
-
BindingException: Invalid bound statement (not found): xxMapper.deleteBatchIds
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): xxxxMapper.deleteBatchIds原创 2024-01-22 22:04:36 · 1035 阅读 · 0 评论 -
mybatis 项目启动异常 TypeException: Could not resolve type alias ‘xxxxxBean‘.
Could not resolve type alias...原创 2024-01-21 08:43:22 · 1339 阅读 · 0 评论 -
Springboot获取jar版本方法
Springboot项目中获取jar包版本号的方式原创 2023-12-10 14:40:09 · 974 阅读 · 0 评论 -
oracle 排序分页问题(排序分页错乱)
oracle 排序分页问题(排序分页错乱)在使用oracle数据库(11g,11.2.0.4.0)做排序分页的时候,发现分页返回的数据跟一次性分页返回的数据不一样ORM框架: mybatis-plus使用自带分页对象 com.baomidou.mybatisplus.extension.plugins.pagination.Page例如表–>学生表 student字段–> id,name,age,type 主键,姓名,年龄,类型(例如组长多个,班长,学习委员…)select s原创 2021-03-26 10:22:12 · 930 阅读 · 2 评论 -
Caused by: java.lang.ClassNotFoundException: org.apache.velocity.context.Context
mybatis-plus代码生成的时候报异常Caused by: java.lang.ClassNotFoundException: org.apache.velocity.context.Context原因:缺少org.apache.velocity的依赖解决办法:在pom文件添加依赖即可<dependency> <groupId>org.apach...原创 2020-04-28 09:02:41 · 6403 阅读 · 0 评论 -
mybatis的mapper.xml标签使用
mybatis的mapper.xml标签使用//namespace命名空间,对应一个mapper类<mapper namespace="com.blog.mapper.BlogsMapper">//resultMap 一个基础返回对象,column是数据库的表字段名,property是对应的实体类字段名,jdbcType是字段的数据库类型//也可以做一个复杂的返回对象,通...原创 2019-10-21 16:32:05 · 240 阅读 · 0 评论 -
mybatis中#{}和${}的区别
mybatis中#{}和${}的区别1.传入之后的是否带单引号#是将传入的值当做字符串的形式select id,name,age from student where id =#{id}当前端把id的值1,传入到后台的时候,就相当于select id,name,age from student where id =‘1’."$"是将传入的数据直接显示生成sql语句 select i...原创 2019-10-21 16:30:41 · 151 阅读 · 0 评论