——————————DescriptionStart——————————
运行环境
Java≥8、MySQL≥5.7、Tomcat≥8
开发工具
eclipse/idea/myeclipse/sts等均可配置运行
适用
课程设计,大作业,毕业设计,项目练习,学习演示等
功能说明






基于javaweb的SSM+Maven大学生就业管理系统(java+ssm+jsp+bootstrap+mysql)
管理员
admin 123456
学生
001 123456
教师
1212 123456
环境需要
1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。 2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA; 3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可 4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS; 5.数据库:MySql 5.7版本; 6.是否Maven项目:是;
技术栈
- 后端:Spring+SpringMVC+Mybatis 2. 前端:JSP+CSS+JavaScript+jQuery+bootstrap
使用说明
- 使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件; 2. 使用IDEA/Eclipse/MyEclipse导入项目,Eclipse/MyEclipse导入时,若为maven项目请选择maven; 若为maven项目,导入成功后请执行maven clean;maven install命令,然后运行; 3. 将项目中jdbc.properties配置文件中的数据库配置改为自己的配置;
——————————CodeStart——————————
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
@RequestMapping("/save") public R save(@RequestBody JiuyexinxiEntity jiuyexinxi, HttpServletRequest request){ jiuyexinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
jiuyexinxiService.insert(jiuyexinxi); return R.ok(); }
@RequestMapping("/add") public R add(@RequestBody JiuyexinxiEntity jiuyexinxi, HttpServletRequest request){ jiuyexinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
jiuyexinxiService.insert(jiuyexinxi); return R.ok(); }
@RequestMapping("/update") public R update(@RequestBody JiuyexinxiEntity jiuyexinxi, HttpServletRequest request){ jiuyexinxiService.updateById(jiuyexinxi); return R.ok(); }
@RequestMapping("/delete") public R delete(@RequestBody Long[] ids){ jiuyexinxiService.deleteBatchIds(Arrays.asList(ids)); return R.ok(); }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| * 注册 */ @IgnoreAuth @RequestMapping("/register") public R register(@RequestBody JiaoshiEntity jiaoshi){ JiaoshiEntity user = jiaoshiService.selectOne(new EntityWrapper<JiaoshiEntity>().eq("jiaoshigonghao", jiaoshi.getJiaoshigonghao())); if(user!=null) { return R.error("注册用户已存在"); } Long uId = new Date().getTime(); jiaoshi.setId(uId); jiaoshiService.insert(jiaoshi); return R.ok(); }
@RequestMapping("/logout") public R logout(HttpServletRequest request) { request.getSession().invalidate(); return R.ok("退出成功"); }
@RequestMapping("/session") public R getCurrUser(HttpServletRequest request){ Long id = (Long)request.getSession().getAttribute("userId"); JiaoshiEntity user = jiaoshiService.selectById(id); return R.ok().put("data", user); }
@IgnoreAuth @RequestMapping(value = "/resetPass") public R resetPass(String username, HttpServletRequest request){ JiaoshiEntity user = jiaoshiService.selectOne(new EntityWrapper<JiaoshiEntity>().eq("jiaoshigonghao", username)); if(user==null) { return R.error("账号不存在"); } user.setMima("123456"); jiaoshiService.updateById(user); return R.ok("密码已重置为:123456"); }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
@RestController @RequestMapping("/storeup") public class StoreupController { @Autowired private StoreupService storeupService;
@RequestMapping("/page") public R page(@RequestParam Map<String, Object> params,StoreupEntity storeup, HttpServletRequest request){ if(!request.getSession().getAttribute("role").toString().equals("管理员")) { storeup.setUserid((Long)request.getSession().getAttribute("userId")); }
EntityWrapper<StoreupEntity> ew = new EntityWrapper<StoreupEntity>(); PageUtils page = storeupService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, storeup), params), params)); request.setAttribute("data", page); return R.ok().put("data", page); }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| }
@IgnoreAuth @RequestMapping("/detail/{id}") public R detail(@PathVariable("id") Long id){ ZhaopinxinxiEntity zhaopinxinxi = zhaopinxinxiService.selectById(id); zhaopinxinxi.setClicknum(zhaopinxinxi.getClicknum()+1); zhaopinxinxi.setClicktime(new Date()); zhaopinxinxiService.updateById(zhaopinxinxi); return R.ok().put("data", zhaopinxinxi); }
@RequestMapping("/thumbsup/{id}") public R vote(@PathVariable("id") String id,String type){ ZhaopinxinxiEntity zhaopinxinxi = zhaopinxinxiService.selectById(id); if(type.equals("1")) { zhaopinxinxi.setThumbsupnum(zhaopinxinxi.getThumbsupnum()+1); } else { zhaopinxinxi.setCrazilynum(zhaopinxinxi.getCrazilynum()+1); } zhaopinxinxiService.updateById(zhaopinxinxi); return R.ok("投票成功"); }
@RequestMapping("/save") public R save(@RequestBody ZhaopinxinxiEntity zhaopinxinxi, HttpServletRequest request){ zhaopinxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
zhaopinxinxiService.insert(zhaopinxinxi); return R.ok(); }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| @RequestMapping("/remind/{columnName}/{type}") public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, @PathVariable("type") String type,@RequestParam Map<String, Object> map) { map.put("column", columnName); map.put("type", type); if(type.equals("2")) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); Calendar c = Calendar.getInstance(); Date remindStartDate = null; Date remindEndDate = null; if(map.get("remindstart")!=null) { Integer remindStart = Integer.parseInt(map.get("remindstart").toString()); c.setTime(new Date()); c.add(Calendar.DAY_OF_MONTH,remindStart); remindStartDate = c.getTime(); map.put("remindstart", sdf.format(remindStartDate)); } if(map.get("remindend")!=null) { Integer remindEnd = Integer.parseInt(map.get("remindend").toString()); c.setTime(new Date()); c.add(Calendar.DAY_OF_MONTH,remindEnd); remindEndDate = c.getTime(); map.put("remindend", sdf.format(remindEndDate)); } } Wrapper<JiuyetongjiEntity> wrapper = new EntityWrapper<JiuyetongjiEntity>(); if(map.get("remindstart")!=null) { wrapper.ge(columnName, map.get("remindstart")); } if(map.get("remindend")!=null) { wrapper.le(columnName, map.get("remindend")); }
String tableName = request.getSession().getAttribute("tableName").toString(); if(tableName.equals("jiaoshi")) { wrapper.eq("jiaoshigonghao", (String)request.getSession().getAttribute("username")); }
int count = jiuyetongjiService.selectCount(wrapper); return R.ok().put("count", count); }
|
——————————PayStart——————————
项目链接:
https://javayms.github.io?id=251023491103200yc
https://javayms.pages.dev?id=251023491103200yc