mybatis
Vransy.
这个作者很懒,什么都没留下…
展开
-
Mysql 通过表明获取字段以及注释
mysql 通过表名获取字段以及注释原创 2022-06-17 14:36:23 · 276 阅读 · 0 评论 -
mybatis 中 where if 的注意事项
再使用mybatis 的mapping 中 会使用到where if 字段 再使用的时候注意事项再java使用的时候 && 是与的意思 再mapping 中 必须要改成 and 不然会出现错误 <where> <if test="null != bookId and bookId != '' "> and book_id = #{bookId} </if&原创 2020-06-19 10:30:49 · 504 阅读 · 0 评论 -
SSM 结构流程图 (Controller 、Service、impl、dao、xml层的关系)
自己画了个SSM的结构流程图 已正在做的图书馆系统为例子了 希望能看明白若有错误 烦请指正原创 2020-06-07 21:32:09 · 4559 阅读 · 1 评论 -
[springBoot+Mybatis报错]解决:Invalid bound statement (not found): xxxxx
在写运行spring的时候总是出现Invalid bound statement (not found): libaryapp.demo.dao.BooksDao.selectAll这个问题始终无法解决 后面逐行去看配置文件 发现配置文件两个地方错误application.propertis修改前mybatis.mapperLocations=classpath:mapper/*.xml修改后mybatis.mapperLocations=classpath*:libarya原创 2020-06-07 12:32:18 · 595 阅读 · 1 评论 -
[mybatis-报错]org.apache.ibatis.exceptions.PersistenceException: ### Error building SqlSession.
上图所示错误 绝大多数原因是因为xml里面没加入<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">加入后报错即消失原创 2020-06-01 23:42:31 · 1158 阅读 · 0 评论 -
新手常用SpringBoot包整合(pom.xml)
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion原创 2020-06-01 22:23:58 · 381 阅读 · 0 评论 -
Mybatis Syntax error on tokens, delete these tokens
再mybatis工程中会报Syntax error on tokens, delete these tokens其实是因为左侧中文的空格引起的删掉就好注解下面跟着的方法一定不要空格换行什么的 太容易出错了原创 2020-05-26 14:43:14 · 295 阅读 · 0 评论 -
新手记一次mybatis中利用SQL语句给boolean类型赋值的问题
当在用mybatis连接数据库的时候 想要验证一个值是否存在时出现的问题在工程中想要验证数据库中t_user表中是否存在相同userId,存在返回true 不存在返回false那么问题来了数据库SQL中没有boolean类型Sql返回值为空的时候mybatis如何去接收数据mybatis中的代码 <select id="findExistId" parameterType...原创 2020-04-21 18:04:21 · 1877 阅读 · 0 评论