帖子详情
DiscussPostMapper 数据访问层
DiscussPostService 业务层
DiscussPostController 表现层
index.html
在帖子标题上增加访问详情页面的链接
discuss-detail.html
处理静态资源的访问路径
复用 index.html的header区域
显示标题,作者,发布时间,帖子正文等内容
在DiscussPostMapper里添加方法
//帖子详情
DiscussPost selectDiscussPostById(int id);
DiscussPostService
//帖子详情
public DiscussPost findDiscussPostById(int id) {
return discussPostMapper.selectDiscussPostById(id);
}
DiscussPostController
//帖子详情
修改discuss-detail.html模板
测试结果