当前位置:网站首页>Boot + jsp University Community Management System (with source Download Link)
Boot + jsp University Community Management System (with source Download Link)
2022-07-01 05:34:00 【Code Garden of azhou】
Architecture technique:springboot+jsp+mysql
Ce système est principalement divisé en trois types de rôles d'utilisateur,Différents rôles ont des fonctions différentes:
Administrateur d'arrière - plan
Centre personnel(Modification des renseignements personnels,Modification du mot de passe)
Liste des activités récentes
Gestion des utilisateurs
Gestion des associations
Gestion de la vérification
Gestion de l'information
Président de l & apos; Association
Centre personnel
Liste des activités
Demande d'activité
Gestion des utilisateurs
Le grand public
Demande de création d'une association
Rejoignez le Club
Centre personnel
Liste des activités de l'Association
@RequestMapping("/addNews")
public ModelAndView addNews(String title,String description){
String createTime = new SimpleDateFormat("yyyy-MM-dd").format(new Date());
newsService.addNews(title,description,createTime);
ModelAndView mv = new ModelAndView();
mv.setViewName("forward:newsManage");
return mv;
}
@RequestMapping("/deleteNews")
public ModelAndView actApplyRefuse(@RequestParam(name = "id", required = true) int id) {
newsService.deleteNews(id);
ModelAndView mv = new ModelAndView();
mv.setViewName("forward:newsManage");
return mv;
}
@RequestMapping("/toNewsModify")
public String toNewsModify(int id,HttpServletRequest httpServletRequest){
httpServletRequest.setAttribute("news",newsService.findNewsById(id));
return "jsp/manage/news_modify";
}
边栏推荐
- RecycleView的一些使用
- LevelDB源码分析之LRU Cache
- Rust基础入门之变量绑定与解构
- Deeply understand the underlying implementation principle of countdownlatch in concurrent programming
- Introduction of 3D Modeling and Processing Software Liu Ligang, Chinese University of Science and Technology
- 数据治理:元数据管理实施(第四篇)
- 提高企业产品交付效率系列(1)—— 企业应用一键安装和升级
- Ebpf cilium practice (2) - underlying network observability
- One click deployment of highly available emqx clusters in rainbow
- 数字金额加逗号;js给数字加三位一逗号间隔的两种方法;js数据格式化
猜你喜欢
随机推荐
Leetcode top 100 questions 1 Sum of two numbers
工业导电滑环的应用
Go learning notes (5) basic types and declarations (4)
Daily code 300 lines learning notes day 11
Unit testing with mongodb
3D建模與處理軟件簡介 劉利剛 中國科技大學
担心侵权?必备无版权素材网站分享,不用担心视频剪辑缺素材
2/15 (awk, awk conditions, awk processing design can perform additional tasks, and use awk array +for loop to realize advanced search)
Fiber Bragg grating (FBG) notes [1]: waveguide structure and Bragg wavelength derivation
实战:redux的基本使用
数据治理:元数据管理实施(第四篇)
Deeply understand the underlying implementation principle of countdownlatch in concurrent programming
printk 调试总结
Floweable source code annotation (40) class delegation
Printk debugging summary
积分商城游戏能够给商家带来什么?怎么搭建积分商城?
Copier le matériel de conseils de bébé ne peut pas être vide, comment résoudre?
Cockroachdb: the resistant geo distributed SQL database paper reading notes
Redis database deployment and common commands
Ebpf cilium practice (2) - underlying network observability