当前位置:网站首页>College community management system based on boot+jsp (with source code download link)
College community management system based on boot+jsp (with source code download link)
2022-07-01 05:34:00 【Code garden of Azhou】
Technology Architecture :springboot+jsp+mysql
The system is mainly divided into three types of user roles , Different roles have different functions :
Backstage Administrator
Personal center ( Personal information modification , Password change )
List of recent activities
User management
Community management
Audit management
News management
President of the Association
Personal center
Activity list
Activity application
User management
General social groups
Apply to create a club
Join a club
Personal center
List of club activities
@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";
}






边栏推荐
- Worried about infringement? Must share copyrightless materials on the website. Don't worry about the lack of materials for video clips
- ssm+mysql二手交易网站(论文+源码获取链接)
- Understand several related problems in JVM - JVM memory layout, class loading mechanism, garbage collection
- 液压滑环的特点讲解
- Application of industrial conductive slip ring
- 0xc000007b应用程序无法正常启动解决方案(亲测有效)
- Mongodb learning chapter: introduction after installation lesson 1
- Causes of short circuit of conductive slip ring and Countermeasures
- Vérification simple de la lecture et de l'écriture de qdatastream
- Multi table operation - foreign key cascade operation
猜你喜欢
随机推荐
printk 调试总结
Daily code 300 lines learning notes day 11
Redis数据库的部署及常用命令
Introduction of 3D Modeling and Processing Software Liu Ligang, Chinese University of Science and Technology
Intelligent operation and maintenance: visual management system based on BIM Technology
LevelDB源码分析之memtable
idea启动查看项目端口
Speed regulation and stroke control based on Ti drv8424 driving stepper motor
Unity 使用Sqlite
Some common commands of podman
mysql 将毫秒数转为时间字符串
如何开始学剪辑?零基础详细解析
小程序常用组件小结
Unity uses SQLite
More than one file was found with OS independent path ‘lib/armeabi-v7a/libyuv.so‘.
eBPF Cilium实战(2) - 底层网络可观测性
tese_Time_2h
多表操作-外键级联操作
Global and Chinese market of protection circuit modules 2022-2028: Research Report on technology, participants, trends, market size and share
Fluentd is easy to use. Combined with the rainbow plug-in market, log collection is faster








