《一步步搭建Springboot+zk+dubbo分布式微服务博客》之实战篇26:博主中心管理功能、文章管理、栏目管理、整合(version25)

《一步步搭建Springboot+zk+dubbo分布式微服务博客》之实战篇26:博主中心管理功能、文章管理、栏目管理、整合(version25)

=========blogerController =============

package org.it123.sdubbo.web.controller;

import java.util.List;

import javax.servlet.http.HttpSession;

import org.it123.sdubbo.model.article.TagInfo;
import org.it123.sdubbo.model.files.Logs;
import org.it123.sdubbo.model.retention.AopLog;
import org.it123.sdubbo.model.system.Users;
import org.it123.sdubbo.service.ArticleInfoService;
import org.it123.sdubbo.service.LogsService;
import org.it123.sdubbo.service.RelArtTagsService;
import org.it123.sdubbo.service.TagInfoService;
import org.springframework.security.access.annotation.Secured;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.Requ

猜你喜欢

转载自blog.csdn.net/u013750652/article/details/103792767