服务器这边想做一个简单的点菜系统,打算采用mysql+mybatis方式来做数据之间的操作。
1、创建项目
通过网站创建一个spring boot项目
创建完成后,使用IntelliJ IDEA打开项目,完成自动导包过程。
2、创建数据库
进入终端
mysql -u root -p
create database OrderDB;
3、创建一张用户表user,表内字段有id、name、age、tel、pwd
手动插入一条测试数据
4、开发前的准备工作
在resources目录下创建mybatis文件夹,里面创建两个文件,mybatis.properties和mybatis-config.xml文件。
mybatis.properties里面存放链接数据库的4大要素
mybatis-config.xml里存放mybatis的全局配置信息,打开官网,可以从Getting Started和Configuration XML,找到所有需要的配置信息。注:这里有中文版可以选择,下图是最基本也是最重要的几个配置项,至于其它配置项,请参考文档,还有就是注意每个配置项的顺序问题。
由上图可以看出,我们要绑定一个mapper,因此需要在resources/mybatis下创建一个mapper文件夹,在里面再创建一个UserMapper.xml文件
这里需要注意一下mapper的namespace,需要创建一个接口类,接口方法名要跟当前UserMapper.xml的sql一致。
接口类里先写一个通过id查询User的方法,User是一个User表的一个实体对象,里面的字段与表一致。
这里需要自己把每条属性的get、set方法补齐,如果需要打印,再把toString方法补上。
接下来为了业务需要,最好写一个UserServiceImpl,用来实现接口的业务逻辑。
如果是新手朋友,这里要注意UserMapper上面的@Autowired,还有类上面的@Service。
5、编写功能接口
创建UserController类
在运行前,记得要在Application类里把Mapper扫包的功能加上,不然可运行不起来的
基本的目录结构请查看下图
6、运行时出现的错误及解决办法
Description:
Failed to auto-configure a DataSource: 'spring.datasource.url' is not specified and no embedded datasource could be auto-configured.
Reason: Failed to determine a suitable driver class
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).
Process finished with exit code 1
当出现这样的信息时,需要在application.properties里配置spring.datasource.driver-class-name、spring.datasource.url、spring.datasource.username、spring.datasource.password。
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.hailong.order.mapper.UserMapper.getUserById
当出现这样的信息时,说明我们的工程没有找到UserMapper里的方法,首先检查一下在UserMapper.xml里mapper的namespace路径对不对,如果没问题,那就可能是根本没有找到UserMapper这个接口类,那我们就再检查一下mybatis-config.xml这个全局配置文件是否正确,如果mapper的resource路径也没问题,那基本就可以确定了,我们好像忘记了没有把这个xml绑定,在application.properties里加入
mybatis.config-location=classpath:mybatis/mybatis-config.xml
再运行一下
ok,完全没问题。
7、数据库操作时遇到的问题
7.1、Post过来多个参数时,如果UserMapper.java类里,方法的接收参数没有使用@Param注解,那么在UserMapper.xml的Sql里要对应写成#{arg0},#{arg1}这样。不然会报以下错误。
"nested exception is org.apache.ibatis.binding.BindingException: Parameter 'name' not found. Available parameters are [arg3, arg2, arg1, arg0, param3, param4, param1, param2]"
如果有@Param注解,写成#{name},#{age}就不会有问题了。
7.2、像写insert或update这种Sql的时候,如果表里带有自增的key的话,需要把对应的key和value都写上否则会提示错误
### Error updating database. Cause: java.sql.SQLException: Column count doesn't match value count at row 1\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: INSERT INTO USER VALUES (?, ?, ?, ?)\n### Cause: java.sql.SQLException: Column count doesn't match value count at row 1\n; bad SQL grammar []; nested exception is java.sql.SQLException: Column count doesn't match value count at row 1
7.3、插入数据库的数据为中文,存入数据库的是乱码,在网上找了好多方法各种试,有些命令不好使,有些文件不存在,如果你试过各种方法仍然不起作用的话,请参考这里,直接在/etc下创建my.cnf文件,并写入以下内容,亲测可用。
[client]
default-character-set=utf8
[mysqld]
character-set-server=utf8
8、密码相关的都是密文的,应该做加密处理后再存入数据库。就需要创建一个Md5的工具类,度娘一搜很多,就不贴在这了,见下图
9、还需要填补的接口
addUser、removeUser、updateUser,还有菜单相关的表等等
毕竟是一个点菜系统嘛,大家可以在后续补充的时候,尽情发挥自己的想像,尽量把功能做的完善一些,在此就不往上堆没用的东西了。
请自行完成 ^-^