一、es6转es5
es6的模块化不能在node.js中运行,需要使用babel转码成es5.
二、postmapping
一般与requestbody结合,获取请求体中的参数。
三、403错误
四、把mapper.xml放到指定路径
问题:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):
解决方法:
pom.xml
<!-- 项目打包时会将java目录中的*.xml文件也进行打包 -->
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
Spring Boot配置文件application中
#配置mapper xml文件的路径
mybatis-plus.mapper-locations=classpath:com/guli/edu/mapper/xml/*.xml