7.30第十次实训

实训感受

1、今天实现了新闻系统的前端部分:新闻系统首页、标签、分页。代码量不是很大,而且很多部分是相似的,实现成功的时候感觉很惊喜。
2、第一次做前后端分离的系统,对springboot的了解又加深了一些。尤其是userDao层的NewsDao让我印象很深刻,但是现在还不是很理解那些sql语句…
新闻系统项目编码

controller层
ArchivesController

@Controller
public class ArchivesController {
    @Autowired
    private NewsService newsService;

    @RequestMapping("archives")
    public String archives(Model model){
        HashMap<String, List<News>> map=newsService.archiveNews();
        Long count=newsService.countNews();
        model.addAttribute("newsCount",count);
        model.addAttribute("archiveMap",map);

        return "archives";
    }
}

TagShowController

@Controller
public class TagShowController {
    @Autowired
    private TagService tagService;
    @Autowired
    private NewsService newsService;


    @RequestMapping("/tags/{id}")
    public String tag(@PageableDefault(size = 5,sort = {"updateTime"},direction = Sort.Direction.DESC) Pageable pageable,
                      @PathVariable Long id, Model model){
        List<Tag> tags=tagService.findTop(7);
        if(id==-1){
            id=tags.get(0).getId();
        }
        Page<News> page=newsService.searchNews(pageable,id);
        model.addAttribute("page",page);
        model.addAttribute("tags",tags);
        return "tags";
    }
}

TypeShowController

@Controller
public class TypeShowController {
    @Autowired
    private TypeService typeService;
    @Autowired
    private NewsService newsService;

    @RequestMapping("/types/{id}")
    public String types(@PageableDefault(size = 5,sort = {"updateTime"},direction = Sort.Direction.DESC)Pageable pageable,
                        @PathVariable Long id, Model model){
        List<Type> types=typeService.findTop(7);
        if(id==-1){
            id=types.get(0).getId();
        }
        NewsQuery newsQuery=new NewsQuery();
        newsQuery.setTypeId(id.toString());
        Page<News> page=newsService.searchNews(pageable,newsQuery);
        model.addAttribute("page",page);
        model.addAttribute("types",types);

        return "types";
    }
}

TagDao

public interface TagDao extends JpaRepository<Tag,Long> {
@Query("select t from Tag t")
    List<Tag> findTop(Pageable pageable);
}

service层
NewsServiceImpl

    public HashMap<String, List<News>> archiveNews() {
        LinkedHashMap<String,List<News>> map=new LinkedHashMap<>();
        List<String> years=newsDao.findGroupYear();
        for(String y:years){
            List<News> news = newsDao.findByYear(y);
            map.put(y,news);
        }
        return map;
    }

新闻项目前端部分实现效果

主页面

在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值