手记

【金秋打卡】第7天 单表管理功能前后端开发

课程名称:Spring Cloud+ Vue前后端分离开发企业级在线视频系统

课程章节:第5章 单表管理功能前后端开发

讲师姓名:甲蛙老师

课程内容

大章列表查询功能开发:第一个业务功能的开发。

课程收获

具体开发流程:

①设计数据库表结构,大章分为需要对应课程以及章节的名字,设置两个字段分别为course_id和name

②使用MyBatis-Generator生成实体类及Mapper

<table tableName="chapter" domainObjectName="Chapter"/>

(推荐在修改要生成的表时,将原来的信息注释掉而不是删除)

③新建ChapterDto,ChapterDto内容和实体类一致,只是规定实体类不允许有改动,而Dto没有限制,同时符合数据传输的要求。

④新建ChapterService

public List<ChapterDto> list() {
   
List<Chapter> chapterList = chapterMapper.selectByExample(new ChapterExample());
   
List<ChapterDto> chapterDtoList = new ArrayList<>();
   
for (Chapter chapter : chapterList) {
       
ChapterDto chapterDto = new ChapterDto();
       
BeanUtils.copyProperties(chapter,chapterDto);
       
chapterDtoList.add(chapterDto);
    }
   
return chapterDtoList;
}

⑤在business服务中对Controller进行开发

@GetMapping("/list")
public List<ChapterDto> chapter() {
   
return chapterService.list();
}

⑥新建Chapter页面及子路由,并暂时使用假数据制作表格


0人推荐
随时随地看视频
慕课网APP