Spring Boot制作个人博客-博客归档页面
Posted qq_48838980
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot制作个人博客-博客归档页面相关的知识,希望对你有一定的参考价值。
1、归档页面
2、archives.html页面
3、新建方法
4、查询方法
5、方法实现
6、在定义一个接口方法
7、新建ArchiveShowController.java
package net.zjs.lrm.web;
import net.zjs.lrm.service.BlogService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
/**
* 功能:
* 作者:zjs
* 日期:2021-06-24
*/
@Controller
public class ArchiveShowController {
@Autowired
private BlogService blogService;
@GetMapping("/archives")
public String archives(Model model){
model.addAttribute("archiveMap",blogService.archiveBlog());
model.addAttribute("blogCount",blogService.countBlog());
return "archives";
}
}
8、运行测试
- 运行出现404错误
- 修改_fragments,不需要传参
- 再次运行
以上是关于Spring Boot制作个人博客-博客归档页面的主要内容,如果未能解决你的问题,请参考以下文章