上一篇讲到通过XXMapper从数据库中读取数据,注意到有警告,提示“Could not autowire. No beans of 'CategoryMapper' type found. ”。今天介绍更完整的写法:
1、添加依赖IService的接口:
package com.example.demo;
import com.baomidou.mybatisplus.extension.service.IService;
public interface ICategoryService extends IService<Category> {
}
2、添加ServiceImpl类
package com.example.demo;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
@Service
public class CategoryImpl extends ServiceImpl<CategoryMapper, Category> implements ICategoryService {
}
3、请求数据
注:注解SpringBootApplication和RestController是之前就有的,一样可以读到数据。
4、各文件目录结构如下图:
5、通常,不同的文件要放在不同的目录下,调整目录结构如下图:
注:移动文件时,Idea会智能的提示如下的对话框,记得选择Refactor:
DemoApplication文件中添加了Category、DemoData、CategoryImpl的引用,相关类的引用地址都会跟着发生变更。