JAVA 는 MD5 등록 로그 인 암호 화 인 스 턴 스 코드 를 간단하게 실현 합 니 다.
프레임 워 크:springmvc,mybatis
도구:maven
다음 코드 를 복사 하면 MD5 암호 화 를 실현 할 수 있 습 니 다.
mave 프로젝트 를 만 들 고 웹 을 추가 합 니 다.모 르 겠 어 요.검색 해 보시 면 됩 니 다.
가입 한 JSP 페이지 코드 는 다음 과 같 습 니 다.
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script type="text/javascript" src="js/jQuery-2.2.0.min.js"></script>
<script type="text/javascript" src="md5/jquery.md5.js"></script>
<title>Insert title here</title>
</head>
<body>
<form action="insertUser" method="post" id="myForm">
<table>
<tr>
<td> :</td>
<td>
<input type="text" id="userName" name="user_name" >
<input type="hidden" id="pwd" name="user_psw">
<div id="userNameInfo"></div>
</td>
</tr>
<tr>
<td> :</td>
<td><input type="text" id="password" name="password" onblur="mdjia()"></td>
</tr>
<tr>
<td><input type="button" value=" hash " ></td>
<td><input type="submit" value=" "></td>
</tr>
</table>
</form>
</body>
<script type="text/javascript">
function mdjia(){
var password=$("#password").val();
var pwd=$.md5(password);
alert(pwd);
$("#pwd").val(pwd);
}
</script>
</html>
UserDto 클래스 를 직접 만들어 야 합 니 다.저 는 UserDto 속성 으로 값 을 전달 합 니 다.jQuery MD5 도 도입 해 야 합 니 다.검색 해 보 세 요.이 파일 을 어떻게 이 위 에 올 려 서 다운로드 하 라 고 하 는 지 모 르 겠 습 니 다.
JSP 로그 인 페이지 의 코드,
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script type="text/javascript" src="js/jQuery-2.2.0.min.js"></script>
<script type="text/javascript" src="md5/jquery.md5.js"></script>
<title>MD5 </title>
</head>
<body>
<form action="authUser" method="post" id="myForm">
<table>
<tr>
<td> :</td>
<td>
<input type="text" id="userName" name="user_name" >
<input type="hidden" id="pwd" name="user_psw">
<div id="userNameInfo"></div>
</td>
</tr>
<tr>
<td> :</td>
<td><input type="text" id="password" name="password" onblur="mdjia()"></td>
</tr>
<tr>
<td><input type="button" value=" hash " ></td>
<td><input type="submit" value=" "></td>
</tr>
</table>
</form>
</body>
<script type="text/javascript">
function mdjia(){
var password=$("#password").val();
var pwd=$.md5(password);
alert(pwd);
$("#pwd").val(pwd);
}
</script>
</html>
이어서 배경 코드 를 쓰 세 요.
package com.test.controller;
import javax.annotation.Resource;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import com.test.dao.UserDao;
import com.test.model.UserDto;
/**
*
* @author
*
*/
@Controller
public class UserLogin {
@Resource
UserDao userDao;
/*
*
*/
@RequestMapping("/insertUser")
public ModelAndView insertUser(UserDto userDto){
// , , ,
String s=userDto.getUser_psw();
String smi=convertMD5(s);
userDto.setUser_psw(smi);
userDao.insertUser(userDto);
return new ModelAndView("NewFile.jsp");
}
/*
*
*/
@RequestMapping("/authUser")
public ModelAndView authUser(UserDto userDto){
int i=0;
//
String s=userDto.getUser_psw();
String smi=convertMD5(s);
// ,
userDto.setUser_psw(smi);
try {
i=userDao.login(userDto);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(i==1){
System.out.println(" ");
}else{
System.out.println(" ");
}
return new ModelAndView("NewFile.jsp");
}
/**
* ,
*/
public static String convertMD5(String inStr){
char[] a = inStr.toCharArray();
for (int i = 0; i < a.length; i++){
a[i] = (char) (a[i] ^ 't');
}
String s = new String(a);
return s;
}
}
이렇게 해서 간단 한 MD5 암호 화 를 만 들 었 습 니 다.다른 결 성 된 코드 는 모두 간단 해서 다 쓰 지 않 고 논 리 를 알 아 보면 할 수 있다.데이터베이스 에 저 장 된 비밀 번 호 를 첨부 하 는 것 은 이 렇 습 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JAVA 객체 작성 및 제거 방법정적 공장 방법 정적 공장 방법의 장점 를 반환할 수 있습니다. 정적 공장 방법의 단점 류 공유되거나 보호된 구조기를 포함하지 않으면 이불류화할 수 없음 여러 개의 구조기 파라미터를 만났을 때 구축기를 고려해야 한다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.