赞
踩
我也是编程小白,所以只写一下最简单的使用spring boot+mybatis plus实现增删改查。
首先引入依赖,搭好框架。
一、entity层,也就是实体类
同类: model层 = entity层 = domain层
作用: 用于存放我们的实体类,与数据库中的属性值基本保持一致。
- @Data
- public class Dish implements Serializable {
- private static final long serialVersionUID = 1L;
-
- private Long id;
-
-
- //菜品名称
- private String name;
-
-
- //菜品分类id
- private Long categoryId;
- }
二、mapper层
同类: mapper层 = dao层
作用: 对数据库进行数据持久化操作,他的方法语句是直接针对数据库操作的
mapper层需要加@mapper注解。
- @Mapper
- public interface DishMapper extends BaseMapper<Dish> {
- }
三、service层
同类: 只有一个 service层
作用: service层 是针对 controller层的 controller,也就是针对我们使用者。service的 impl 是把mapper和service进行整合的文件。
service接口需要继承IService<entity>,这个里面是引入实体类。
- public interface DishService extends IService<Dish> {
- }
三点五、IMPL
搞完mapper和service还要实现service,就是建立一个serviceImpl.
这个serviceImpl需要继承ServiceImpl<Mapper,entity>并且实现service。
记得加注解@Service。
- @Service
- @Slf4j
- public class DishServiceImpl extends ServiceImpl<DishMapper,Dish> implements DishService {
- }
四、controller层
同类: controller层 = web 层
作用: 控制器,导入service层,因为service中的方法是我们使用到的,controller通过接收前端传过来的参数进行业务操作,再将处理结果返回到前端。
- @RestController
- @RequestMapping("/dish")
- @Slf4j
- public class DishController {
- @Autowired
- private DishService dishService;
-
-
- }
增删改查直接写方法,然后service调用就行了。
比如保存,dishService.save
直接打出来dishService然后后面有一堆功能,需要哪个就调用哪个。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。