Vue+SpringBoot实现简单登陆

前言

这两天开始学习使用Vue实现前后端分离,以下内容实现了简单的登录操作。

开发工具和环境:VS Code、IDEA、Maven、Jpa、Mysql

创建vue项目

1.我是使用vue-cli来创建项目的,首先是安装vue-cli。

npm install vue-cli -g

2.cd进入你存放项目的文件夹下,创建helloworld项目

vue init webpack helloworld

这一步会有一些选项,直接默认就好

Project name //项目名
Project description //项目描述
Author //作者
Vue build //选择默认就好
Install vue-router? //Y
Use ESLint to lint your code? //n 这个还是选择no,代码检测太烦人了
Set up unit tests //Y
Pick a test runner //Jest
Setup e2e tests with Nightwatch? //Y
Should we run npm install for you after the project has been created? (recommended) //Yes, use NPM

这样项目就创建完成了,cd 进入刚刚创建的项目下,然后npm run dev就可以启动项目了,会提示你访问哪个地址,浏览器中输入就行了。

页面实现

登录页面 Login.vue

<template>
  <div >
    <input id="username" name="username" type="text" placeholder="输入用户名" autocomplete="off" v-model="userName">
    <input id="password" name="password" type="password" placeholder="Password" v-model="password">
    <button @click="login()">登陆</button>
  </div>
</template>

<script>
import axios from 'axios'
import Qs from 'qs'
export default {

  name: 'Login',
  data () {
    return {
        userName: "",
        password: "",
    }
  },
  created(){

  },
  methods:{
      login:function(){
        //console.log(this.userName);
        //console.log(this.password);
        var data = Qs.stringify({"username":this.userName,"password":this.password});
        axios.post('http://localhost:8081/login',data,{withCredentials:true}).then(res=>{
        console.log(res);
        if(res.data.code===111){
            this.$router.push({
            path:'/success'
        })
       console.log(res)
        }else{
          console.log("失败")
        }
        }).catch(res=>{
            alert("账号或密码不正确");
            console.log("err",res)
        })
      }
  }  
}
</script>

登陆成功页面 success.vue

<template>
  <div >
      <h2>欢迎您</h2>
  </div>
</template>


<script>
  export default{
    name: 'Success',
    data(){
        return {
            msg: '登陆成功'
        }
    }
  }
</script>

页面路由配置

src/router/index.js

import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'
import Login from '@/components/Login'
import Success from '@/components/Success'


Vue.use(Router)

export default new Router({
  routes: [
    {
      path: '/',
      name: 'HelloWorld',
      component: HelloWorld
    },
    {
      path: '/login',
      name: 'login',
      component: Login
    },
    {
      path: '/success',
      name: 'success',
      component: Success
    }
  ]
})

将路由添加到程序入口,设置main.js

import Vue from 'vue'
import App from './App'
import router from './router'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,    //有默认将router添加进来了
  components: { App },
  template: '<App/>'
})

运行项目

npm run dev

可以直接在VS Code上的terminal操作就行了,可以在Login.vue中用console.log看一下是不是取到了用户信息。vue 中使用v-model双向数据绑定,会自动更新元素。

后端实现

我是使用Spring Data Jpa作为系统的持久化框架的,下面只展示主要代码

实体类 UserEntity

@Entity(name = "user")
@Data
public class UserEntity {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private String id;
    @Column(name = "name")
    private String name ;
    @Column(name = "pwd")
    private String pwd;

    public UserEntity(){
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getPwd() {
        return pwd;
    }
    public void setPwd(String pwd) {
        this.pwd = pwd;
    } 
}

结果集

public class ResponseEntity {
    int code;
    String message;

    public int getCode() {
        return code;
    }
    public String getMessage() {
        return message;
    }
    public void setCode(int code){this.code = code;}
    public void setMessage(String message){this.message = message;}
}

创建UserController

@CrossOrigin(origins = "http://localhost:8082", maxAge = 3600)
@Controller
public class UserController {

    //restful 风格的api
    @Autowired
    UserService userService;

    @ResponseBody
    @RequestMapping(value = "/login", method = RequestMethod.POST)
    public ResponseEntity login(HttpSession session, ModelMap map, @RequestParam("username")String name,
                        @RequestParam("password")String password){
        ResponseEntity re = new ResponseEntity();
        UserEntity userEntity = userService.findUserByName(name);
        if(userEntity!=null && userEntity.getPwd().equals(password)){
            session.setAttribute("id", userEntity.getId());
            session.setAttribute("name",name);
            session.setAttribute("user",userEntity);
            System.out.println("success");
            re.setCode(111);
            re.setMessage("登陆成功");
            return re;
        }else{
            System.out.println("123123123");
            map.put("msg", "用户名或者密码错误");
            map.addAttribute("tip","密码或者用户名错误");
            re.setCode(222);
            re.setMessage("用户名或者密码错误");
            return re;
        }
    }

创建UserService

public interface UserService {
    public UserEntity findUserByName(String email);
}
@Service
public class UserServiceImpl implements UserService {

    @Autowired
    UserDao userDao;

    @Transactional
    
    @Override
    public UserEntity findUserByName(String name) {
        try {
            return userDao.findUserEntitiesByName(name);
        } catch (Exception e) {
            return null;
        }
    }
}

创建UserDao

public interface UserDao extends JpaRepository<UserEntity, Integer> {
    UserEntity findUserEntitiesByName(String name);
}

找到application.properties配置文件

server.port=8081

spring.datasource.url=jdbc:mysql://localhost:3306/sbtest?useUnicode=true&characterEncoding=UTF-8
spring.datasource.username=**********
spring.datasource.password=***********
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.properties.hibernate.hbm2ddl.auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.show-sql= true

到此,就可以再次运行项目了,但是通常会有跨域问题

解决跨域问题

1.加入注解CrossOrigin

@CrossOrigin(origins = "*", maxAge = 3600)

还是不行,再来。

2.新建WebMvcConfiguration
@Configuration
public class WebMvcConfiguration implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")
                .allowCredentials(true)
                .allowedMethods("GET", "POST", "DELETE", "PUT")
                .maxAge(3600);
    }
}

ok ,我的项目可以跑了,就不继续百度了。
跨域问题前后端都能解决,但是我们先尝试从后端解决。
到此,登陆功能基本实现。撒花。。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342

推荐阅读更多精彩内容