摘要:
今天在学习MyBatisPlus过程中突然报了个错,信息如下 Invalid value type for attribute ‘factoryBeanObjectType’: java.lang.String 报错原因:factoryBeanObjectType 属性值类型无效 应该是jar包版本 阅读全文
摘要:
后端 1:确保你的后端代码有相应的接口在controller层 @PostMapping("/add") public Result addCourse(@RequestBody Course course) { courseService.addCourse(course); return Res 阅读全文