还没入门的小白一枚,正在学习Spring Boot 整合MyBatis,代码什么的都没问题了,数据库也是连接成功的,就是接口测试,在浏览器上实现eclipse给数据库“添加成功”的时候出现:
就一直无法解决,网上也没搜到对应的有效解决方法,跪求大佬指点,呜呜呜
我的接口测试代码是:
package com.example.demo.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import com.example.demo.entity.Article;
import com.example.demo.dao.ArticleMapper;
@RestController
public class HelloController {
@Autowired
private ArticleMapper ArticleMapper;
@GetMapping("/add")
public String add() {
Article article = new Article();
article.setContent("sasi");
article.setTitle("123");
ArticleMapper.insertIntoArticle(article);
return "添加成功!";
}
}