✨作者主页:IT毕设梦工厂✨
个人简介:曾从事计算机专业培训教学,擅长Java、Python、微信小程序、Golang、安卓Android等项目实战。接项目定制开发、代码讲解、答辩教学、文档编写、降重等。
☑文末获取源码☑
精彩专栏推荐⬇⬇⬇
Java项目
Python项目
安卓项目
微信小程序项目
文章目录
- 一、前言
- 二、开发环境
- 三、系统界面展示
- 四、部分代码设计
- 五、论文参考
- 六、系统视频
- 结语
一、前言
随着科技的和信息技术的飞速发展,人才招聘市场正经历着变革。企业对于人才的需求日益迫切,而求职者也需要一个更便捷的途径来寻找合适的工作。微信小程序和安卓APP作为新兴的移动应用形式,具有广泛的用户基础和便捷的特点,为人才招聘提供了新的契机。因此,开发一款基于微信小程序和安卓APP的人才招聘平台具有重要的现实意义和必要性。
尽管现有的招聘平台和应用在一定程度上满足了企业和求职者的需求,但它们在功能、用户体验、数据安全等方面仍存在诸多不足。例如,部分平台信息更新滞后,难以满足实时招聘需求;部分应用操作复杂,用户体验欠佳;还有一些平台在数据保护方面存在漏洞,可能导致用户隐私泄露。这些问题使得现有的招聘解决方案无法充分发挥其潜力,进一步突显了开发新型人才招聘平台的必要性。
本课题旨在设计并实现一款基于微信小程序和安卓APP的人才招聘平台,通过整合岗位类型管理、招聘信息管理、应聘信息管理、面试通知管理、面试结果管理等功能,实现企业、求职者和管理人员之间的互动。课题的研究目的在于提供一个用户友好、功能齐全、安全可靠的招聘解决方案,以满足不同角色的需求。
课题的研究成果将对人才招聘市场产生影响。首先,新型招聘平台将提高企业和求职者之间的匹配效率,缩短招聘周期,降低招聘成本;其次,通过优化用户体验和保障数据安全,平台将吸引更多用户,进一步扩大市场份额;再次,课题的实施将推动相关技术的发展,为未来人才招聘市场的创新提供有益借鉴。总之,本课题具有显著的实践价值和广泛的社会意义。
二、开发环境
- 开发语言:Java
- 数据库:MySQL
- 系统架构:B/S
- 后端:SpringBoot
- 前端:微信小程序/Android+uniapp+Vue
三、系统界面展示
- 人才招聘微信小程序/安卓APP界面展示:
四、部分代码设计
- 微信小程序/安卓APP项目实战-代码参考:
@RestController
@RequestMapping("/user")
@Api(tags = {"登录模块"})
public class UserController {
@Autowired
private UserService userService;
@Autowired
private Producer checkCode;
@Autowired
private HttpSession session;
@Autowired
private MailUtils mailUtils;
@Autowired
private UserMapper userMapper;
@PostMapping("/register")
@ApiOperation(value="注册",notes = "code= 0 : 注册失败 code= 1: 注册成功,前端根据接口code值来判断跳转页面")
public Object register(@RequestBody User user){
JSONObject jsonObject = new JSONObject();
Result register = userService.register(user);
if(user == null){
jsonObject.put(Const.CODE,0);
jsonObject.put(Const.MSG,"user 为空");
return jsonObject;
}
if(!register.isFlag()){ //注册失败
jsonObject.put(Const.CODE,0);
jsonObject.put(Const.MSG,register.getMessage());
return jsonObject;
}
// 注册成功
jsonObject.put(Const.CODE,1);
jsonObject.put(Const.MSG,register.getMessage());
return jsonObject;
}
@PostMapping("/login")
@ApiOperation(value="登录",notes = "code= 0 : 失败 code= 1: 成功,前端根据接口code值来判断跳转页面")
public Object login(String name, String password,String checkCode){
JSONObject jsonObject = new JSONObject();
Result flag = userService.login(name, password);
String code = (String) session.getAttribute("checkCode");
if(checkCode.equalsIgnoreCase(code)){
System.out.println("code:---->"+code);
System.out.println("checkCode:----》"+checkCode);
if(!flag.isFlag()){
jsonObject.put(Const.CODE,0);
jsonObject.put(Const.MSG,flag.getMessage());
return jsonObject;
}
jsonObject.put(Const.CODE,1);
jsonObject.put(Const.MSG,flag.getMessage());
session.setAttribute(Const.NAME,flag.getData());
return jsonObject;
}
jsonObject.put(Const.CODE,0);
jsonObject.put(Const.MSG,"验证码错误,请重新输入");
return jsonObject;
}
@GetMapping("/checkCode")
@ApiOperation(value="接收验证码" )
public void getCheckCode(HttpServletResponse resp, HttpServletRequest req){
//服务器通知浏览器不要缓存
resp.setHeader("pragma","no-cache");
resp.setHeader("cache-control","no-cache");
resp.setHeader("expires","0");
// 生成验证码
String code = checkCode.createText();
// 生成验证码图片
BufferedImage image = checkCode.createImage(code);
// 将图片传入session
req.getSession().setAttribute("checkCode",code);
// session.setAttribute(" checkCode", code);
// 将图片输出到前端(图片+格式)
resp.setContentType("image/png");
try {
ServletOutputStream outputStream = resp.getOutputStream();
ImageIO.write(image, "png", outputStream);
} catch (IOException e) {
e.printStackTrace();
System.out.println("响应验证码失败");
}
}
@GetMapping("/logout")
@ApiOperation(value="注销登录" )
public String logout(){
session.removeAttribute(Const.NAME);
return "redicet:/user/login";
}
@GetMapping("/showManagerAndUser")
@ApiOperation(value = "管理员查询所有的非管理员")
public Object showManagerAndUser(){
Result result = userService.ManagingUsers();
JSONObject jsonObject = new JSONObject();
jsonObject.put(Const.CODE,1);
jsonObject.put(Const.MSG,result.getMessage());
jsonObject.put(Const.NAME,result.getData());
return jsonObject;
}
@PostMapping("/sendCode")
@ApiOperation(value = "发送修改密码的验证码")
public Object sendCode(String email){
JSONObject jsonObject = new JSONObject();
// 生成激活码
String codeText = checkCode.createText();
// 存激活码到session
session.setAttribute(Const.codeText,codeText);
session.setAttribute(Const.mail,email);
String text = "您好,本次的验证码是:"+codeText+"——>1分钟内有效";
mailUtils.sendMail(email, text,"修改密码验证");
jsonObject.put(Const.CODE,1);
return jsonObject;
}
@PostMapping("alterPassword")
@ApiOperation(value = "修改密码",notes = "username: 账号, code: 验证码 password:新密码" )
public Object alterPassword(@RequestBody UserDTO userDTO){
JSONObject jsonObject = new JSONObject();
QueryWrapper<User> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("username",userDTO.getUsername());
String mail = (String) session.getAttribute("mail");
queryWrapper.eq("email",mail);
User user = userMapper.selectOne(queryWrapper);
if (user == null){
jsonObject.put(Const.CODE,0);
jsonObject.put(Const.MSG,"用户名和邮箱不对应");
return jsonObject;
}
String code = (String) session.getAttribute(Const.codeText);
if (code.equalsIgnoreCase(userDTO.getCode())){
userDTO.setPassword(Md5Utils.md5(userDTO.getPassword()));
user.setPassword(userDTO.getPassword());
userMapper.updateById(user);
jsonObject.put(Const.CODE,1);
jsonObject.put(Const.MSG,"修改成功");
return jsonObject;
}
jsonObject.put(Const.CODE,0);
jsonObject.put(Const.MSG,"验证码错误,修改失败");
return jsonObject;
}
}
@RestController
@RequestMapping("/resume")
@Api(tags = {"投简历模块"})
public class ResumeController {
@Autowired
private ResumeService resumeService;
@Autowired
private HttpSession session;
@PostMapping("/add")
@ApiOperation(value="投递简历",notes = "code= 0 : 注册失败 code= 1: 注册成功,前端根据接口code值来判断跳转页面")
public Object addResume(@RequestBody Resume resume){
JSONObject jsonObject = new JSONObject();
User name = (User) session.getAttribute("name");
boolean flag = resumeService.add(resume,name.getUid());
if (flag){
jsonObject.put(Const.CODE,1);
jsonObject.put(Const.MSG,"投递成功");
return jsonObject;
}
jsonObject.put(Const.CODE,0);
jsonObject.put(Const.MSG,"投递失败");
return jsonObject;
}
@PostMapping("/delete")
@ApiOperation(value="撤销投递简历",notes = "code= 0 : 注册失败 code= 1: 注册成功,前端根据接口code值来判断跳转页面")
public Object deleteResume(Integer id){
JSONObject jsonObject = new JSONObject();
User name = (User) session.getAttribute("name");
resumeService.delete(name.getUid(),id);
jsonObject.put(Const.CODE,1);
jsonObject.put(Const.MSG,"撤销成功");
return jsonObject;
}
@GetMapping("show")
@ApiOperation(value="展示已经投递简历信息",notes = "code= 0 : 注册失败 code= 1: 注册成功,前端根据接口code值来判断跳转页面")
public Object show(){
JSONObject jsonObject = new JSONObject();
User name = (User) session.getAttribute("name");
Result result = resumeService.showByUid(name.getUid());
jsonObject.put(Const.CODE,1);
jsonObject.put(Const.NAME,result.getData());
jsonObject.put(Const.MSG,result.getMessage());
return jsonObject;
}
}
@RestController
@RequestMapping("/info")
@Api(tags = {"个人信息模块"})
public class InformationController {
@Autowired
private InformationService informationService;
@Autowired
private HttpSession session;
@PostMapping("/update")
@ApiOperation(value="更新基本信息",notes = "code= 0 : 失败 code= 1: 成功,前端根据接口code值来判断跳转页面")
public Object updateInfo(@RequestBody Information info){
JSONObject jsonObject = new JSONObject();
User name = (User) session.getAttribute("name");
if (name == null){
jsonObject.put(Const.CODE,0);
jsonObject.put(Const.MSG,"您好,您的登录已过期,请重新登录");
return jsonObject;
}
Result result = informationService.updateInfo(info, name.getUid());
if (!result.isFlag()){
jsonObject.put(Const.CODE,0);
jsonObject.put(Const.MSG,result.getMessage());
return jsonObject;
}
jsonObject.put(Const.CODE,1);
jsonObject.put(Const.MSG,result.getMessage());
return jsonObject;
}
@PostMapping("/uploadPic")
@ApiOperation(value="上传照片",notes = "code= 0 : 失败 code= 1: 成功,前端根据接口code值来判断跳转页面")
public Object uploadUserPic(@RequestParam("photo") MultipartFile upFile) {
JSONObject jsonObject = new JSONObject();
// 上传失败
if (upFile.isEmpty()) {
jsonObject.put(Const.CODE, 0);
jsonObject.put(Const.MSG, "文件上传失败");
return jsonObject;
}
// 文件名 = 当前时间到毫秒+原来的文件文件名
String fileName = System.currentTimeMillis() + upFile.getOriginalFilename();
// 文件路径
String filePath = "D:\\DataStorage\\IdeaData\\campusemploydemo\\campusemploydemo\\src\\main\\resources\\static\\img\\";
// 如果文件路径不存在,新增该路径
File file1 = new File(filePath);
if (!file1.exists()) {
file1.mkdir();
}
// 实际的文件地址(前端上传之后的地址)
File dest = new File(filePath + System.getProperty("file.separator") + fileName);
// 存储到数据库里的相对文件地址
String storePath = "/img/userPic" + fileName;
try {
upFile.transferTo(dest); // 用来把 MultipartFile 转换换成 File
User user = (User) session.getAttribute("name");
Information information = informationService.selectById(user.getUid());
information.setPhoto(storePath);
Result flag = informationService.updateInfo(information, user.getUid());
if (flag.isFlag()) {
jsonObject.put(Const.CODE, 1);
jsonObject.put(Const.MSG, "上传成功");
jsonObject.put("pic", storePath);
return jsonObject;
}
} catch (IOException e) {
jsonObject.put(Const.CODE, 0);
jsonObject.put(Const.MSG, "上传失败" + ": " + e.getMessage());
return jsonObject;
} finally {
return jsonObject;
}
}
@PostMapping("/uploadResume")
@ApiOperation(value="上传附件",notes = "code= 0 : 失败 code= 1: 成功,前端根据接口code值来判断跳转页面")
public Object uploadResumeFile(@RequestParam("file") MultipartFile upFile) {
JSONObject jsonObject = new JSONObject();
// 上传失败
if (upFile.isEmpty()) {
jsonObject.put(Const.CODE, 0);
jsonObject.put(Const.MSG, "文件上传失败");
return jsonObject;
}
// 文件名 = 当前时间到毫秒+原来的文件文件名
String fileName = System.currentTimeMillis() + upFile.getOriginalFilename();
// 文件路径
String filePath = "D:\\DataStorage\\IdeaData\\campusemploydemo\\campusemploydemo\\src\\main\\resources\\static\\resume\\";
// 如果文件路径不存在,新增该路径
File file1 = new File(filePath);
if (!file1.exists()) {
file1.mkdir();
}
// 实际的文件地址(前端上传之后的地址)
File dest = new File(filePath + System.getProperty("file.separator") + fileName);
// 存储到数据库里的相对文件地址
String storePath = "/img/userPic" + fileName;
try {
upFile.transferTo(dest); // 用来把 MultipartFile 转换换成 File
User user = (User) session.getAttribute("name");
Information information = informationService.selectById(user.getUid());
information.setFiles(storePath);
Result flag = informationService.updateInfo(information, user.getUid());
if (flag.isFlag()) {
jsonObject.put(Const.CODE, 1);
jsonObject.put(Const.MSG, "上传成功");
jsonObject.put("pic", storePath);
return jsonObject;
}
} catch (IOException e) {
jsonObject.put(Const.CODE, 0);
jsonObject.put(Const.MSG, "上传失败" + ": " + e.getMessage());
return jsonObject;
} finally {
return jsonObject;
}
}
@GetMapping("/showAll")
@ApiOperation(value="展示基本信息",notes = "如果返回只有一个数字,则是roleId")
public Object showAll(){
User user = (User) session.getAttribute("name");
System.out.println("打印个人:"+user);
Result result = informationService.findAll(user);
JSONObject jsonObject = new JSONObject();
jsonObject.put(Const.CODE, 1);
jsonObject.put(Const.MSG, result.getMessage());
jsonObject.put(Const.NAME, result.getData());
return jsonObject;
}
}
五、论文参考
- 计算机毕业设计选题推荐-人才招聘微信小程序/安卓APP-论文参考:
六、系统视频
人才招聘微信小程序/安卓APP-项目视频:
结语
计算机毕业设计选题推荐-人才招聘微信小程序/安卓APP-项目实战
大家可以帮忙点赞、收藏、关注、评论啦~
源码获取:私信我
精彩专栏推荐⬇⬇⬇
Java项目
Python项目
安卓项目
微信小程序项目