问题 1:
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
在这里插入图片描述
在这里插入图片描述

问题 2
在这里插入图片描述

二、解决方式:
1. 检查自己写的注解是否错了,并没有。
2. 在网上查找解决方式:如下所示:
步骤一:
在 springboot 的配置文件添加,mybatis 的配置如下所示:

mybatis:
  typeAliasesPackage: com.xxx.xxx.dao.entity
  mapperLocations: classpath:mapper/*.xml

步骤二:
①将接口与对应的实现类放在与 application 启动类的同一个目录或者他的子目录下,这样注解可以被扫描到,这是最省事的办法。(没测试)
②或者在启动类上加上 @MapperScan 或者 @ComponentScan 注解,手动指定 application 类要扫描哪些包下的注解,如下所示:

@SpringBootApplication
@ComponentScan(basePackages = {"com.xxx.xxx.dao"})
  ③或者在接口上添加@Mapper注解。
@Mapper
public interface UserMapper {
}

问题 3:
在这里插入图片描述

原因:
修改了 mapper 类的名称对应要修改路径
在这里插入图片描述

问题 4:
添加数据时未添加外键
在这里插入图片描述

添加 sql 输入外键 unit_ID
在这里插入图片描述

问题 5:

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-09-12 14:40:39.211 ERROR 60268 --- [           main] o.s.boot.SpringApplication               : Application run failed

常见注释错误,查看代码中的 @注释
问题 6:
在这里插入图片描述

问题 7:
在测试的时候报出
415
更改一下请求头

在这里插入图片描述