MyBatis
iwaed
1
展开
-
mybatis项目过程中知识点记录
关于配置文件 idea中mybatis可以自动将SQL中查出来的带下划线的字段,转换为驼峰标志 mybatis.configuration.map-underscore-to-camel-case=true mybits查询返回集合 Sql查询需要返回多行数据,可以使用List集合来进行存储。首先需要在Mapper.xml文件中写上需要的sql语句,例如: <select...原创 2019-12-23 16:50:54 · 170 阅读 · 0 评论 -
Mybatis报错 There is no getter for property named 'xxx' in 'class com.example.entity.Classes'
报错的原因可能是xml文件中写错了单词。尤其注意大小写。原创 2019-08-10 10:56:43 · 975 阅读 · 0 评论 -
MyBatis generator的使用
一、新建项目 1.选择SpringInitializr,然后点击next 2.输入你的项目名,点击next 3.选择web下的Spring Web Starter,点击next 4.确认项目路径和名字,点击finish 5.项目新建成功后,会在右下角弹出提示框,maven的依赖需要从网络下载,选啥都可以,不过建议Enable Auto-Import 可以...原创 2019-08-11 13:10:12 · 237 阅读 · 0 评论 -
去除xml文件中的黄色背景
打开file --> settings --> Editor -->inspections --> SQL, 图中所示两行去掉勾勾 然后File --> Setting --> Editor --> Color Scheme --> General --> code --> injected language fragm...原创 2019-08-11 13:25:45 · 908 阅读 · 0 评论 -
一些官方文档
Mybatis 中文官网:http://www.mybatis.cn/ 更多:https://mybatis.org/mybatis-3/zh/index.html Spring Spring Framework Documentation:https://docs.spring.io/spring/docs/5.2.1.BUILD-SNAPSHOT/spring-framew...原创 2019-10-06 18:36:37 · 149 阅读 · 0 评论