package com.learn.mall.service.impl; import com.learn.mall.exception.LearnMallException; import com.learn.mall.exception.LearnMallExceptionEnum; import com.learn.mall.model.dao.UserMapper; import com.learn.mall.model.pojo.User; import com.learn.mall.service.UserService; import com.learn.mall.util.MD5Utils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.security.NoSuchAlgorithmException; @Service public class UserServiceImpl implements UserService { @Autowired UserMapper userMapper; @Override public void register(String username, String password) throws LearnMallException { //查询用户是否存在,不允许重名 User result = userMapper.selectByName(username); if (result != null) { throw new LearnMallException(LearnMallExceptionEnum.USERNAME_EXISTED); } //用户不存在,执行插入操作 User user = new User(); user.setUsername(username); //对密码进行MD5加密并加盐 try { user.setPassword(MD5Utils.getMD5Str(password)); } catch (NoSuchAlgorithmException e) { e.printStackTrace(); } int count = userMapper.insertSelective(user); if(count == 0){ throw new LearnMallException(LearnMallExceptionEnum.INSERT_FAILED); } } }到此这篇springboot用户密码加密(spring boot 密码加密)的文章就介绍到这了,更多相关 内容请继续浏览下面的相关 推荐文章,希望大家都能在编程的领域有一番成就!
版权声明:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权、违法违规、事实不符,请将相关资料发送至xkadmin@xkablog.com进行投诉反馈,一经查实,立即处理!
转载请注明出处,原文链接:https://www.xkablog.com/rfx/16051.html