java框架注册登录代码_SSM框架下实现登录注册的示例代码

基本配置:jdk1.8   tomcat 8  MyEclipse

先打好地基:

98c562eea159b26d65ca173b1f77a841.png

spring配置文件 application.xml:

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"

xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"

xmlns:context="http://www.springframework.org/schema/context"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="

http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd

http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd

http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd

http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd

http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd

http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

class="org.springframework.jdbc.datasource.DriverManagerDataSource">

com.microsoft.sqlserver.jdbc.SQLServerDriver

jdbc:sqlserver://localhost:1433;DatabaseName=Organic

sa

123456

springMVC配置文件 :

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"

xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"

xmlns:context="http://www.springframework.org/schema/context"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd

http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd

http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd

http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd

http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd

http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

class="org.springframework.web.servlet.view.InternalResourceViewResolver">

value="org.springframework.web.servlet.view.JstlView" />

web.xml 配置:

xmlns="http://java.sun.com/xml/ns/javaee"

xmlns:web="http://java.sun.com/xml/ns/javaee"

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">

OrganicShopWithSSM

index.html

index.htm

index.jsp

default.html

default.htm

default.jsp

contextConfigLocation

classpath:applicationContext.xml

org.springframework.web.context.ContextLoaderListener

mvc-dispatcher

org.springframework.web.servlet.DispatcherServlet

contextConfigLocation

classpath:springMVC.xml

1

mvc-dispatcher

*.do

CharacterEncodingFilter

org.springframework.web.filter.CharacterEncodingFilter

encoding

UTF-8

CharacterEncodingFilter

/*

开始第一层啦:

pojo包:UserInfo 类

package pojo;

public class UserInfo {

private String uid;

private String name;

private String email;

private String password;

public String getUid() {

return uid;

}

public void setUid(String uid) {

this.uid = uid;

}

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public String getEmail() {

return email;

}

public void setEmail(String email) {

this.email = email;

}

public String getPassword() {

return password;

}

public void setPassword(String password) {

this.password = password;

}

@Override

public String toString() {

return "UserInfo [uid=" + uid + ", name=" + name + ", email="

+ email + ", password=" + password + "]";

}

}

mapper层:(注意mybatis的xml文件也要放在mapper层)

ShopMapping.java:

其中@Param注解 是为了和xml中的查询参数进行绑定

package mapper;

import org.apache.ibatis.annotations.Param;

import pojo.UserInfo;

public interface ShopMapper {

public void register(@Param("name")String name,@Param("email")String email,@Param("password")String password);

public UserInfo login(@Param("email")String email,@Param("password")String password);

public int findUser(@Param("email")String email);

}

Shop.xml

/p>

PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"

"http://mybatis.org/dtd/mybatis-3-mapper.dtd">

select * from UserInfo where email=#{email} and password=#{password}

insert into UserInfo(name,email,password) values (#{name},#{email},#{password})

select count(*) from UserInfo where email=#{email}

service层:其实在写登陆的时候用了int类型,在想登陆也只要在数据库中查询表单输入的数据就行了,在mapper层的xml的文件中也写了 select count(*) 查询个数,  但是结果并不好,因为我要做的还有设置session。

package service;

import pojo.UserInfo;

public interface ShopService {

//用户注册

void regist(String name,String email,String password);

//用户登录

UserInfo login(String email,String password);

//验证

int findUser(String email);

}

service实现层:service.Impl

package service.Impl;

import mapper.ShopMapper;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Service;

import pojo.UserInfo;

import service.ShopService;

@Service

public class ShopServiceImpl implements ShopService {

@Autowired

public ShopMapper sm;

@Override

public void regist(String name, String email, String password) {

sm.register(name, email, password);

}

@Override

public UserInfo login(String email, String password) {

UserInfo user=sm.login(email, password);

if(user!=null &&user.getPassword().equals(password)){

return user;

}

return null;

}

@Override

public int findUser(String email) {

if(sm.findUser(email)==0){

return 0;

}

return 1;

}

}

controller层:

package controller;

import javax.servlet.http.HttpSession;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Controller;

import org.springframework.ui.Model;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

import pojo.UserInfo;

import service.ShopService;

@Controller

@RequestMapping("")

public class ShopController {

@Autowired

public ShopService ss;

@RequestMapping(value = "registerUser", method = RequestMethod.POST)

public String registerUser(String name, String email, String password) {

int findUser = ss.findUser(email);

if (findUser == 0) {

ss.regist(name, email, password);

// System.out.println("可以注册");

return "login";

} else {

// System.out.println("注册失败");

return "register";

}

}

@RequestMapping(value = "loginUser", method = RequestMethod.POST)

public String loginUser(UserInfo user, HttpSession session) {

// 调用service方法

user = ss.login(user.getEmail(), user.getPassword());

if (user != null) {

session.setAttribute("u".user);

return "index";

}

return "login";

}

@RequestMapping("/outLogin")

public String outLogin(HttpSession session){

session.invalidate();

return "index";

}

}

在controller层当中,关于注册的格式要求还需要自行搜索一下,主要讲一下的是登陆。在登陆的这个方法中传递了两个形式参数,UserInfo是实体类,HttpSssion是设置session的关键,后面通过session.setAttribute()设置session,这也是在上文中提到的需要session的部分。在后来的注销中可以使用session.invalidate。

到此这篇关于SSM框架下实现登录注册的示例代码的文章就介绍到这了,更多相关SSM 登录注册内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值