大家好!我是程序员一帆,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:Java毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发环境
- 开发语言:Java
- 框架:ssm
- JDK版本:JDK1.8
- 服务器:tomcat7
- 数据库:mysql 5.7
- 数据库工具:Navicat12
- 开发软件:eclipse/myeclipse/idea
- Maven包:Maven3.3.9
- 浏览器:谷歌浏览器
源码下载地址:
https://download.csdn.net/download/2301_76953549/89298824
论文目录
【如需全文请按文末获取联系】
一、项目简介
大学生校园招聘网实现的功能包括邀请面试管理,学生就业管理,简历管理,合同协议管理,公司管理,招聘会管理,简历投递管理,招聘信息管理等功能。该系统采用了Mysql数据库,Java语言,SSM框架等技术进行编程实现。
二、系统设计
2.1软件功能模块设计
图4.1即为设计的管理员功能结构,管理员权限操作的功能包括对简历投递,招聘会,招聘信息,公司,学生信息进行管理,也能管理基础数据,包括行业管理,协议类型管理,新闻类型管理,学院管理,院系管理,招聘岗位管理,招聘会类型管理等功能。
图4.2即为设计的公司功能结构,公司权限操作的功能包括查看简历投递,管理招聘会,管理招聘信息,其中招聘信息管理包括邀请面试管理和合同协议管理等功能。
图4.3即为设计的学生功能结构,学生权限操作的功能包括对招聘信息投递简历,查看简历投递信息,查看面试邀请信息,管理简历,查看招聘会,查看合同协议等信息。
2.2数据库设计
(1)图4.4即为招聘信息这个实体所拥有的属性值。
(2)图4.5即为邀请面试这个实体所拥有的属性值。
(3)图4.6即为学生这个实体所拥有的属性值。
(5)图4.8即为上面介绍的实体中存在的联系。
三、系统项目部分截图
3.1管理员功能实现
招聘会管理
图5.1 即为编码实现的招聘会管理界面,招聘会信息有招聘会名称,招聘会结束日期,招聘会类型,招聘会开始日期,招聘会照片等信息,管理员查询招聘会需要提供招聘会编号或招聘会名称才可以查询,管理员也能添加招聘会,修改招聘会信息等。
公司管理
图5.2 即为编码实现的公司管理界面,公司信息也需要管理员增删改查管理,公司信息包括营业执照,所在行业,公司名称等信息。
学生就业管理
图5.3 即为编码实现的学生就业管理界面,学生就业信息包括就业职位,就业公司,就业地点,就业时间等,这些数据都需要管理员记录,需要管理员负责修改,查询等。
3.2公司功能实现
简历投递查看
图5.4 即为编码实现的简历投递查看界面,学生查看招聘信息之后,投递的简历信息需要公司查看和查询。
招聘信息管理
图5.5 即为编码实现的招聘信息管理界面,公司发布招聘信息,可以下架招聘信息,也能修改招聘信息的薪资待遇,招聘电话,招聘岗位等数据。
邀请面试管理
图5.6 即为编码实现的邀请面试管理界面,公司负责添加邀请面试信息,对面试的地点,面试时间,面试需知等信息需要登记,公司也能删除邀请面试数据。
3.3学生功能实现
招聘信息
图5.7 即为编码实现的招聘信息界面,学生查看发布招聘信息的公司信息,学生对招聘信息投递简历需要点击投递简历按钮进行简历投递。
招聘会
图5.8 即为编码实现的招聘会界面,学生查看招聘会的开始与结束时间以及招聘会类型等信息。
简历管理
图5.9 即为编码实现的简历管理界面,个人简历包括教育经历,实习或工作经历,院系,简历名称等数据,学生需要进行添加,可以修改有错误数据的简历信息。
合同协议查看
图5.10 即为编码实现的合同协议查看界面,合同协议信息是公司发布的信息,学生可以下载协议文件,可以查看合同协议介绍信息。
四、部分核心代码
package com.controller;
import java.io.File;
import java.math.BigDecimal;
import java.net.URL;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.*;
import java.lang.reflect.InvocationTargetException;
import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.*;
import com.entity.view.*;
import com.service.*;
import com.utils.PageUtils;
import com.utils.R;
import com.alibaba.fastjson.*;
/**
* 简历投递
* 后端接口
* @author
* @email
*/
@RestController
@Controller
@RequestMapping("/toudi")
public class ToudiController {
private static final Logger logger = LoggerFactory.getLogger(ToudiController.class);
@Autowired
private ToudiService toudiService;
@Autowired
private TokenService tokenService;
@Autowired
private DictionaryService dictionaryService;
//级联表service
@Autowired
private JianliService jianliService;
@Autowired
private ZhaopinService zhaopinService;
@Autowired
private XueshengService xueshengService;
@Autowired
private GongsiService gongsiService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
String role = String.valueOf(request.getSession().getAttribute("role"));
if(false)
return R.error(511,"永不会进入");
else if("学生".equals(role))
params.put("xueshengId",request.getSession().getAttribute("userId"));
else if("公司".equals(role))
params.put("gongsiId",request.getSession().getAttribute("userId"));
if(params.get("orderBy")==null || params.get("orderBy")==""){
params.put("orderBy","id");
}
PageUtils page = toudiService.queryPage(params);
//字典表数据转换
List<ToudiView> list =(List<ToudiView>)page.getList();
for(ToudiView c:list){
//修改对应字典表字段
dictionaryService.dictionaryConvert(c, request);
}
return R.ok().put("data", page);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id, HttpServletRequest request){
logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
ToudiEntity toudi = toudiService.selectById(id);
if(toudi !=null){
//entity转view
ToudiView view = new ToudiView();
BeanUtils.copyProperties( toudi , view );//把实体数据重构到view中
//级联表
JianliEntity jianli = jianliService.selectById(toudi.getJianliId());
if(jianli != null){
BeanUtils.copyProperties( jianli , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setJianliId(jianli.getId());
}
//级联表
ZhaopinEntity zhaopin = zhaopinService.selectById(toudi.getZhaopinId());
if(zhaopin != null){
BeanUtils.copyProperties( zhaopin , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setZhaopinId(zhaopin.getId());
}
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody ToudiEntity toudi, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,toudi:{}",this.getClass().getName(),toudi.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(false)
return R.error(511,"永远不会进入");
Wrapper<ToudiEntity> queryWrapper = new EntityWrapper<ToudiEntity>()
.eq("jianli_id", toudi.getJianliId())
.eq("zhaopin_id", toudi.getZhaopinId())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
ToudiEntity toudiEntity = toudiService.selectOne(queryWrapper);
if(toudiEntity==null){
toudi.setInsertTime(new Date());
toudi.setCreateTime(new Date());
toudiService.insert(toudi);
return R.ok();
}else {
return R.error(511,"已经投递过该职位了,无法二次投递");
}
}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody ToudiEntity toudi, HttpServletRequest request){
logger.debug("update方法:,,Controller:{},,toudi:{}",this.getClass().getName(),toudi.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
// if(false)
// return R.error(511,"永远不会进入");
//根据字段查询是否有相同数据
Wrapper<ToudiEntity> queryWrapper = new EntityWrapper<ToudiEntity>()
.notIn("id",toudi.getId())
.andNew()
.eq("jianli_id", toudi.getJianliId())
.eq("zhaopin_id", toudi.getZhaopinId())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
ToudiEntity toudiEntity = toudiService.selectOne(queryWrapper);
if(toudiEntity==null){
toudiService.updateById(toudi);//根据id更新
return R.ok();
}else {
return R.error(511,"已经投递过该职位了,无法二次投递");
}
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Integer[] ids){
logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
toudiService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
/**
* 批量上传
*/
@RequestMapping("/batchInsert")
public R save( String fileName, HttpServletRequest request){
logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);
Integer yonghuId = Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId")));
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try {
List<ToudiEntity> toudiList = new ArrayList<>();//上传的东西
Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段
Date date = new Date();
int lastIndexOf = fileName.lastIndexOf(".");
if(lastIndexOf == -1){
return R.error(511,"该文件没有后缀");
}else{
String suffix = fileName.substring(lastIndexOf);
if(!".xls".equals(suffix)){
return R.error(511,"只支持后缀为xls的excel文件");
}else{
URL resource = this.getClass().getClassLoader().getResource("../../upload/" + fileName);//获取文件路径
File file = new File(resource.getFile());
if(!file.exists()){
return R.error(511,"找不到上传文件,请联系管理员");
}else{
List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件
dataList.remove(0);//删除第一行,因为第一行是提示
for(List<String> data:dataList){
//循环
ToudiEntity toudiEntity = new ToudiEntity();
// toudiEntity.setJianliId(Integer.valueOf(data.get(0))); //简历 要改的
// toudiEntity.setZhaopinId(Integer.valueOf(data.get(0))); //招聘 要改的
// toudiEntity.setInsertTime(date);//时间
// toudiEntity.setCreateTime(date);//时间
toudiList.add(toudiEntity);
//把要查询是否重复的字段放入map中
}
//查询是否重复
toudiService.insertBatch(toudiList);
return R.ok();
}
}
}
}catch (Exception e){
e.printStackTrace();
return R.error(511,"批量插入数据异常,请联系管理员");
}
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
// 没有指定排序字段就默认id倒序
if(StringUtil.isEmpty(String.valueOf(params.get("orderBy")))){
params.put("orderBy","id");
}
PageUtils page = toudiService.queryPage(params);
//字典表数据转换
List<ToudiView> list =(List<ToudiView>)page.getList();
for(ToudiView c:list)
dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段
return R.ok().put("data", page);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id, HttpServletRequest request){
logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
ToudiEntity toudi = toudiService.selectById(id);
if(toudi !=null){
//entity转view
ToudiView view = new ToudiView();
BeanUtils.copyProperties( toudi , view );//把实体数据重构到view中
//级联表
JianliEntity jianli = jianliService.selectById(toudi.getJianliId());
if(jianli != null){
BeanUtils.copyProperties( jianli , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setJianliId(jianli.getId());
}
//级联表
ZhaopinEntity zhaopin = zhaopinService.selectById(toudi.getZhaopinId());
if(zhaopin != null){
BeanUtils.copyProperties( zhaopin , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setZhaopinId(zhaopin.getId());
}
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody ToudiEntity toudi, HttpServletRequest request){
logger.debug("add方法:,,Controller:{},,toudi:{}",this.getClass().getName(),toudi.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(!"学生".equals(role))
return R.error("您不是学生,不能投递简历");
XueshengEntity xueshengEntity = xueshengService.selectById((Integer)request.getSession().getAttribute("userId"));
if(xueshengEntity == null)
return R.error("查不到当前学生账户,请核实");
JianliEntity jianliEntity = jianliService.selectOne(new EntityWrapper<JianliEntity>()
.eq("xuesheng_id", xueshengEntity.getId())
);
if(jianliEntity == null)
return R.error("当前学生没有简历哦,赶紧添加简历去找心仪的岗位吧");
toudi.setJianliId(jianliEntity.getId());
Wrapper<ToudiEntity> queryWrapper = new EntityWrapper<ToudiEntity>()
.eq("jianli_id", toudi.getJianliId())
.eq("zhaopin_id", toudi.getZhaopinId())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
ToudiEntity toudiEntity = toudiService.selectOne(queryWrapper);
if(toudiEntity==null){
toudi.setInsertTime(new Date());
toudi.setCreateTime(new Date());
toudiService.insert(toudi);
return R.ok();
}else {
return R.error(511,"已经投递过该职位了,无法二次投递");
}
}
}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。