使用邮箱注册帐户以及激活

思路:

1.注册帐户时把用户存入数据库并且设置用户状态不可用,同时给注册的邮箱发邮件。

2.邮箱的内容应该是链接到项目的激活方法,并且传入参数(注册的邮箱和验证码)。(http://localhost:8080/email/user/register?action=activate&email=1434244213@qq.com&validateCode=b4dc9b79b75d9aa7d6c332e780a375c2)

3.点击链接会对邮箱、验证码、激活时间进行验证,如果激活成功,更改用户状态为可用。

 

service层代码

import java.text.ParseException;
import java.util.Date;import javax.servlet.http.HttpServletRequest;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.app.dao.UserDao;
import com.app.tools.MD5Util;
import com.app.tools.SendEmail;
import com.app.tools.SendMail;
import com.app.tools.ServiceException;
import com.code.model.UserModel;/*** * @author BuNuo*/
@Service
public class RegisterValidateService {@Autowiredprivate UserDao userDao;@Autowiredprivate  HttpServletRequest request;/*** 处理注册*/public void processregister(String email){UserModel user=new UserModel();Long as=5480l;user.setId(as);user.setName("BuNuo");user.setPassword("111111");user.setEmail(email);user.setRegisterTime(new Date());user.setStatus(0);///如果处于安全,可以将激活码处理的更复杂点,这里我稍做简单处理//user.setValidateCode(MD5Tool.MD5Encrypt(email));
        user.setValidateCode(MD5Util.encode2hex(email));userDao.save(user);//保存注册信息///邮件的内容StringBuffer sb=new StringBuffer("点击下面链接激活账号,48小时生效,否则重新注册账号,链接只能使用一次,请尽快激活!</br>");String url = request.getScheme() //当前链接使用的协议+"://" + request.getServerName()//服务器地址 + ":" + request.getServerPort() //端口号 + request.getContextPath(); //应用名称,如果应用名称为sb.append("<a href="+url+"/user/register?action=activate&email=");sb.append(email); sb.append("&validateCode="); sb.append(user.getValidateCode());sb.append("\">http://localhost:8088/email/user/register?action=activate&email="); sb.append(email);sb.append("&validateCode=");sb.append(user.getValidateCode());sb.append("</a>");//发送邮件//new SendMail().sendMail(email, sb.toString());new SendEmail().send(email, sb.toString());System.out.println("发送邮件");}/*** 处理激活* @throws ParseException *////传递激活码和email过来public void processActivate(String email , String validateCode)throws ServiceException, ParseException{  //数据访问层,通过email获取用户信息UserModel user=userDao.find(email);//验证用户是否存在 if(user!=null){  //验证用户激活状态  if(user.getStatus()==0){ ///没激活Date currentTime = new Date();//获取当前时间  //验证链接是否过期 
                currentTime.before(user.getRegisterTime());if(currentTime.before(user.getLastActivateTime())) {  //验证激活码是否正确  if(validateCode.equals(user.getValidateCode())) {  //激活成功, //并更新用户的激活状态,为已激活 System.out.println("==sq==="+user.getStatus());user.setStatus(1);//把状态改为激活System.out.println("==sh==="+user.getStatus());userDao.update(user);} else {  System.out.println("激活码不正确");  }  } else { System.out.println("激活码已过期!");  }  } else {System.out.println("邮箱已激活,请登录!");  }  } else {System.out.println("该邮箱未注册(邮箱地址不存在)!");  }  }
}

 

MD5Util.java

import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class MD5Util {/*** 将源字符串使用MD5加密为字节数组* @param source* @return*/public static byte[] encode2bytes(String source) {byte[] result = null;try {MessageDigest md = MessageDigest.getInstance("MD5");md.reset();md.update(source.getBytes("UTF-8"));result = md.digest();} catch (NoSuchAlgorithmException e) {e.printStackTrace();} catch (UnsupportedEncodingException e) {e.printStackTrace();}return result;}/*** 将源字符串使用MD5加密为32位16进制数* @param source* @return*/public static String encode2hex(String source) {byte[] data = encode2bytes(source);StringBuffer hexString = new StringBuffer();for (int i = 0; i < data.length; i++) {String hex = Integer.toHexString(0xff & data[i]);if (hex.length() == 1) {hexString.append('0');}hexString.append(hex);}return hexString.toString();}/*** 验证字符串是否匹配* @param unknown 待验证的字符串* @param okHex 使用MD5加密过的16进制字符串* @return 匹配返回true,不匹配返回false*/public static boolean validate(String unknown , String okHex) {return okHex.equals(encode2hex(unknown));}}

 

SendEmail.java    发送邮件的方法,调用此方法传入邮箱和发送内容即可(new SendEmail().send(email, content);)

package com.app.tools;
import java.util.Date;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;/*** * @author BuNuo*/
public class SendEmail {public static final String HOST = "smtp.163.com";public static final String PROTOCOL = "smtp";   public static final int PORT = 8080;public static final String FROM = "";//发件人的emailpublic static final String PWD = "";//发件人密码/*** 获取Session* @return*/private static Session getSession() {Properties props = new Properties();props.put("mail.smtp.host", HOST);//设置服务器地址//props.put("mail.store.protocol" , PROTOCOL);//设置协议//props.put("mail.smtp.port", PORT);//设置端口props.put("mail.smtp.auth" , "true");Authenticator authenticator = new Authenticator() {@Overrideprotected PasswordAuthentication getPasswordAuthentication() {return new PasswordAuthentication(FROM, PWD);}};Session session = Session.getDefaultInstance(props , authenticator);return session;}public void send(String toEmail , String content) {Session session = getSession();try {System.out.println("--send--"+content);// Instantiate a messageMessage msg = new MimeMessage(session);//Set message attributesmsg.setFrom(new InternetAddress(FROM));InternetAddress[] address = {new InternetAddress(toEmail)};msg.setRecipients(Message.RecipientType.TO, address);msg.setSubject("账号激活邮件");msg.setSentDate(new Date());msg.setContent(content , "text/html;charset=utf-8");//Send the message
            Transport.send(msg);}catch (MessagingException mex) {mex.printStackTrace();}}
}

 demo地址:http://download.csdn.net/detail/qq_33347991/9711788

转载于:https://www.cnblogs.com/bunuo/p/6095050.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/417739.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

网站报错时,自动跳转到指定报错页(error.html)的办法

ASP.NET在web层的web.config下进行如下配置&#xff1a;当web层中的页面报错时&#xff0c;会自动跳转到根目录下的error.htm页面&#xff0c;提示用户&#xff0c;非常人性化。 <system.web><customErrors mode"On" defaultRedirect"~/error.htm"…

8250u运行matlab,第8代CPU i5-8250U 电脑安装核显 WIN7X64位驱动 - 小众知识

新拿到手的笔记本HP 66 PRO G1 安装WIN10的版本&#xff0c;对于WIN10在苏菲上使用被虐了之后就没好感了&#xff0c;另外由于这个笔记本是工作用的&#xff0c;有很多软件还是win7版&#xff0c;于是就格式化装了WIN7(64位)。安装完成后找不到WIN7主板驱动就找了驱动精灵&…

Poj2586 每五个月都是亏

题目大意&#xff1a; MS公司&#xff08;我猜是微软&#xff09;遇到了千年虫的问题&#xff0c;导致数据大量数据丢失。比如财务报表。现在知道这个奇特的公司每个月不是盈利就是亏损&#xff08;废话&#xff09;&#xff0c;而且无论是盈利和亏损都有一个定值&#xff0…

php 获取cookieid,Redis实现Session共享详解

Redis实现Session共享这几天在做session共享这么一个小模块&#xff0c;也查了好多资料&#xff0c;给我的感觉&#xff0c;就是太乱了&#xff0c;一直找不到我想要的东西&#xff0c;几乎全部实现方法都与我的想法不一样&#xff0c;在这里&#xff0c;我总结一下自己是如何用…

C# base和this

• 是否可以在静态方法中使用base和this&#xff0c;为什么&#xff1f; • base常用于哪些方面&#xff1f;this常用于哪些方面&#xff1f; • 可以base访问基类的一切成员吗&#xff1f; • 如果有三层或者更多继承&#xff0c;那么最下级派生类的base指向那一层呢&#xff…

IE和Firefox对iframe document对象的差异性

在IE6、IE7中&#xff0c;我们可以使用 document.frames[ID].document 来访问iframe子窗口中的document对象&#xff0c;可是这是不符合W3C标准的写法&#xff0c;也是IE下独有的方法&#xff0c;在Firefox下却不可以使用&#xff0c;Firefox下使用的是符合W3C标准的 document.…

php利用ajax文件上传,如何在PHP中利用AjaxForm实现一个文件上传功能

如何在PHP中利用AjaxForm实现一个文件上传功能发布时间&#xff1a;2020-12-18 14:52:38来源&#xff1a;亿速云阅读&#xff1a;94作者&#xff1a;Leah如何在PHP中利用AjaxForm实现一个文件上传功能&#xff1f;针对这个问题&#xff0c;这篇文章详细介绍了相对应的分析和解答…

asp.net记录错误日志的方法

1、说明 在调试发布后的asp.net项目时有可能会遇到意想不到的错误&#xff0c;而未能及时的显示。这就需要记录日志来跟踪错误信息&#xff0c;所以写了个简单的记录信息的方法&#xff0c;记录简单的文本信息也可以使用。此方法是以生成文本文件的方式记录的&#xff0c;下面贴…

Flex DES加密

as3crypto&#xff1a;一个as3的关于加解密的开源项目 http://code.google.com/p/as3crypto/ 加密 var key:ByteArray new ByteArray(); key.writeUTFBytes("cf43qbhs"); var iv:ByteArray new ByteArray(); iv.writeUTFBytes("cf43qbhs"); va…

oracle建表代码,Oracle 建表(一对多)代码及相关约束示例

建表(一对多)代码及相关约束create table t_class(c_id number(3) primary key,c_name varchar2(20) not null);create table t_stu(s_id number(5) primary key,s_name varchar2(8) not null,sex char(2) default 男,birthday date,school_age number(2) check(school_age>…

Flex中的Base64加解密

Flex中的Base64加解密Flex sdk3就内置了Base64的加/解密工具类分别是mx.utils.Base64Encodermx.utils.Base64DecoderBase64Encoder用法如下&#xff1a; var str:String "原始字符串";//获取原始字符串var base64:Base64Encoder new Base64Encoder();base64.insert…

iOS10 UI教程管理层次结构

iOS10 UI教程管理层次结构 iOS10 UI教程管理层次结构&#xff0c;在一个应用程序中&#xff0c;如果存在多个层次结构&#xff0c;就需要对这些层次结构进行管理。在UIView类中提供了可以用来管理层次结构的方法&#xff0c;让开发者可以添加、移动、删除来自层次结构中的元素。…

flash影响中文输入

外部网页&#xff1a;鼠标离开flash时可以输入中文<s:Application mouseOut"IMEEnabled()"> /** * 允许中文输入法 */ protected function IMEEnabled():void { IME.enabledtrue; }内部控件&#xff1a;获取焦点时加IME.enabledtrue;

oracle rac添加用户组,oracle 11g rac 与 oracle 10 rac所需要建立的组和用户

oracle 11g rac配置1. Create OS groups using thecommand below. Enter these commands as the root user:#/usr/sbin/groupadd -g 501 oinstall#/usr/sbin/groupadd -g 502 dba#/usr/sbin/groupadd -g 504 asmadmin#/usr/sbin/groupadd -g 506 asmdba#/usr/sbin/groupadd -g …