Java兼职平台系统的实现方式
作者:若安舟已远
时间:2023-04-26
来源:互联网
浏览:0
一、项目运行环境配置:Jdk1.8+Tomcat8.5+mysql+Eclispe(IntelliJIDEA,Eclispe,MyEclispe,Sts都支持)项目技术:HTML+Springboot+SpringMVC+MyBatis+ThymeLeaf+JavaScript+JQuery+Ajax+maven等等.二、效果图三、核心代码登录控制层/***@Authoryy*@Description登录*@Date2022.2.17*/publicclassLoginControllerextendsH
一、项目运行
环境配置:
Jdk1.8 + Tomcat8.5 + mysql + Eclispe(IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持)
项目技术:
HTML +Springboot+ SpringMVC + MyBatis + ThymeLeaf + JavaScript + JQuery + Ajax + maven等等.
二、效果图







三、核心代码
登录控制层
/**
* @Author yy
* @Description 登录
* @Date 2022.2.17
*/
public class LoginController extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
JSONObject jsonObject = new JSONObject();
String username = req.getParameter("username");
String password = req.getParameter("password");
resp.setCharacterEncoding("UTF-8");
HttpSession session = req.getSession();
if (StringUtils.isBlank(username) || StringUtils.isBlank(password)) {
jsonObject.put("code", 2000);
jsonObject.put("flag", "fail");
jsonObject.put("user", null);
jsonObject.put("msg", "usernameOrPasswordIsBank");//用户名密码不能为空
resp.getWriter().print(jsonObject);
return;
}
password = MyMD5Util.encrypt(password);
System.out.println(password);
BusinessUserVO businessUserVO = new BusinessUserVO();
businessUserVO.setUsername(username);
businessUserVO.setPassword(password);
StudentUserVO studentUserVO = new StudentUserVO();
studentUserVO.setUsername(username);
studentUserVO.setPassword(password);
String flag1 = null;
String flag2 = null;
try {
flag1 = BusinessUserDao.selectUsername(businessUserVO);
if ("ok".equals(flag1)) {//企业用户名存在
BusinessUserDTO businessUserDTO = BusinessUserDao.select(businessUserVO);
if (businessUserDTO != null) {
jsonObject.put("code", 2000);
jsonObject.put("flag", "success");//登录成功
jsonObject.put("user", businessUserDTO);
jsonObject.put("msg", "login_success");
session.setAttribute("businessUser",businessUserDTO);
resp.getWriter().print(jsonObject);
return;
} else {
jsonObject.put("code", 2000);
jsonObject.put("flag", "fail");//登录失败
jsonObject.put("user", null);
jsonObject.put("msg", "passwordError");//密码错误
resp.getWriter().print(jsonObject);
return;
}
}
flag2 = StudentUserDao.selectUsername(studentUserVO);
if ("ok".equals(flag2)) {//学生用户名存在
StudentUser studentUser = StudentUserDao.select(studentUserVO);
if (studentUser != null) {
jsonObject.put("code", 2000);
jsonObject.put("flag", "success");//登录成功
jsonObject.put("user", studentUser);
jsonObject.put("msg", "login_success");
session.setAttribute("studentUser",studentUser);
resp.getWriter().print(jsonObject);
return;
} else {
jsonObject.put("code", 2000);
jsonObject.put("flag", "fail");//登录失败
jsonObject.put("user", null);
jsonObject.put("msg", "passwordError");//密码错误
resp.getWriter().print(jsonObject);
return;
}
}
//用户名不存在,前往注册
jsonObject.put("code", 2000);
jsonObject.put("flag", "fail");//登录失败
jsonObject.put("user", null);
jsonObject.put("msg", "usernameIsNotExist");//密码错误
resp.getWriter().print(jsonObject);
return;
} catch (SQLException throwables) {
throwables.printStackTrace();
}
return;
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException {
doGet(req, resp);
}
}管理员登录控制层
public class AdminLoginController extends HttpServlet {
@SneakyThrows
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String username = req.getParameter("username");
String password = req.getParameter("password");
password = MyMD5Util.encrypt(password);
JSONObject jsonObject = new JSONObject();
HttpSession session = req.getSession();
Admin admin = new Admin(username, password);
Admin adminFromDB = AdminDao.findByUsernamePassword(admin);
if (adminFromDB!=null){
jsonObject.put("code",2000);
jsonObject.put("msg","login_success");
jsonObject.put("admin",adminFromDB.getUsername());
jsonObject.put("flag","success");
resp.getWriter().print(jsonObject);
session.setAttribute("admin",adminFromDB);
return;
}else {
jsonObject.put("code",2000);
jsonObject.put("msg","no admin");
jsonObject.put("admin",null);
jsonObject.put("flag","fail");
resp.getWriter().print(jsonObject);
return;
}
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doGet(req, resp);
}
}提交个人简介控制层
public class SubmitResumeController extends HttpServlet {
@SneakyThrows
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
JSONObject jsonObject = new JSONObject();
DiskFileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload upload = new ServletFileUpload(factory);
req.setCharacterEncoding("UTF-8");
upload.setHeaderEncoding("UTF-8");
List items = upload.parseRequest(req);
StringBuffer sb = new StringBuffer();
String resumeFile = null;
for (FileItem item : items) {
String name = item.getFieldName();
InputStream inputStream = item.getInputStream();
if (!name.equals("resumeFile")){
String string = item.getString();
string = new String(string.getBytes("ISO8859_1"), StandardCharsets.UTF_8);
sb.append(string+"&&");
}else {
String[] split = sb.toString().split("&&");
String studentName = split[0];
String studentUsername = split[1];
String recruitInfoId = split[2];
String path=req.getServletContext().getRealPath("/");
String fieldName = studentName+"_"+studentUsername+"_"+recruitInfoId+"_"+item.getName();
String filePath = path+fieldName;
resumeFile = fieldName;
File file = new File(filePath);
BufferedInputStream bufferedInputStream = new BufferedInputStream(inputStream);
FileOutputStream fileOutputStream = new FileOutputStream(file);
int line;
while ((line = bufferedInputStream.read())!=-1){
fileOutputStream.write(line);
}
fileOutputStream.flush();
fileOutputStream.close();
bufferedInputStream.close();
}
}
String[] split = sb.toString().split("&&");
String studentName = split[0];
String studentUsername = split[1];
String recruitInfoId = split[2];
String applyPosition = split[3];
String phoneNum = split[4];
String email = split[5];
Resume resume = new Resume(studentUsername, Integer.parseInt(recruitInfoId), studentName, applyPosition, phoneNum, email, resumeFile);
int insert = ResumeDao.insert(resume);
if (insert == 1){
jsonObject.put("code",2000);
jsonObject.put("msg","add success");
jsonObject.put("flag","success");
jsonObject.put("data",resume);
resp.getWriter().print(jsonObject);
return;
}else {
jsonObject.put("code",2000);
jsonObject.put("msg","add fail");
jsonObject.put("flag","fail");
jsonObject.put("data",null);
resp.getWriter().print(jsonObject);
}
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doGet(req, resp);
}
}
作者最新文章
Word格式转换成PDF?Word转PDF的具体步骤是什么?
2026-09-02 19:13
长安猎手K50 2026款上市,14.19万元起售
2026-08-25 16:08
价格大跳水,网友惊呼买早了!两大巨头正面交锋,最高直降2500元,几乎所有品类“你降我也降”
2026-08-25 16:02
全新奥迪Q3 L申报信息揭晓,车身尺寸升级,动力配置保持强劲
2026-08-25 15:44
iPhone15ProMax屏幕常亮怎么设置 iPhone15ProMax屏幕常亮设置方法
2026-08-25 15:31
热门文章
更多
精品专题
更多
Mac软件
更多
WINDOWS
更多
Windows 10
Windows
Windows 10 是一款微软推出的经典操作系统,拥有硬件兼容性与多任务处理能力。它更偏向把系统状态查看和常用调节动作放在一起,适合需要持续观察和微调设备状态的场景。
极度公式
Windows/macOS/Linux
极度公式是一款跨平台专业LaTeX公式识别编辑软件,支持OCR公式识别和多平台编辑。和使用说明,避免使用,享受完整功能与稳定支持。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。
















