我的编程空间,编程开发者的网络收藏夹
学习永远不晚

怎么搭建SpringBoot+Vue前后端分离

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

怎么搭建SpringBoot+Vue前后端分离

本文小编为大家详细介绍“怎么搭建SpringBoot+Vue前后端分离”,内容详细,步骤清晰,细节处理妥当,希望这篇“怎么搭建SpringBoot+Vue前后端分离”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

    1 什么是前后端分离

    前后端分离是目前互联网开发中比较广泛使用的开发模式,主要是将前端和后端的项目业务进行分离,可以做到更好的解耦合,前后端之间的交互通过xml或json的方式,前端主要做用户界面的渲染,后端主要负责业务逻辑和数据的处理。

    怎么搭建SpringBoot+Vue前后端分离

    2 Spring Boot后端搭建

    2.1 Mapper层

    请参阅这篇文章 手把手教你SpringBoot整合Mybatis

    此次项目的后端搭建就是在这个项目的基础上

    2.2 Service层

    接口:

    public interface StudentService {        public int saveStudent(Student student);        public Student findStudentById(Integer id);        public List<Student> findAllStudent();        public int removeStudentById(Integer id);        public int updateStudentById(Student student);}

    实现类:

    @Servicepublic class StudentServiceImpl implements StudentService {    @Autowired    private XmlStudentMapper xmlStudentMapper;    @Override    public int saveStudent(Student student) {        return xmlStudentMapper.saveStudent(student);    }    @Override    public Student findStudentById(Integer id) {        return xmlStudentMapper.findStudentById(id);    }    @Override    public List<Student> findAllStudent() {        return xmlStudentMapper.findAllStudent();    }    @Override    public int removeStudentById(Integer id) {        return xmlStudentMapper.removeStudentById(id);    }    @Override    public int updateStudentById(Student student) {        return xmlStudentMapper.updateStudentById(student);    }}

    2.3 Controller层

    @RestController@RequestMapping("/student")public class StudentController {    @Autowired    private StudentService studentService;        @PostMapping("/save")    public int saveStudent(@RequestBody Student student) {        int result;        try {            result = studentService.saveStudent(student);        } catch (Exception exception) {            return -1;        }        return result;    }        @GetMapping("/findAll")    public List<Student> findAll() {        return studentService.findAllStudent();    }        @GetMapping("/findById/{id}")    public Student findById(@PathVariable("id") Integer id) {        return studentService.findStudentById(id);    }        @DeleteMapping("/remove/{id}")    public int remove(@PathVariable("id") Integer id) {        return studentService.removeStudentById(id);    }        @PostMapping("/update")    public int update(@RequestBody Student student) {        return studentService.updateStudentById(student);    }}

    2.4 配置类

    解决跨域请求

    @Configurationpublic class CorsConfig implements WebMvcConfigurer {    @Override    public void addCorsMappings(CorsRegistry registry) {        registry.addMapping("/**")                .allowedOriginPatterns("*")                .allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE", "OPTIONS")                .allowCredentials(true)                .maxAge(3600)                .allowedHeaders("*");    }}

    图解跨域问题:

    怎么搭建SpringBoot+Vue前后端分离

    3 Vue前端搭建

    3.1 新建Vue_cli2.x项目

    3.2 引入路由

    npm install vue-router --save

    3.3 新建文件

    怎么搭建SpringBoot+Vue前后端分离

    3.4 配置和测试路由

    main.js配置

    import Vue from 'vue'import App from './App.vue'import router from './router'Vue.config.productionTip = falsenew Vue({    render: h => h(App),    router}).$mount('#app')

    index.js

    //注册路由import Vue from 'vue';import VueRouter from 'vue-router';//引入路由import index from '../view/index'import update from "../view/update";import selectAll from "../view/selectAll";import selectOne from "../view/selectOne";import insert from "../view/insert";Vue.use(VueRouter);const router = new VueRouter({    routes: [        {            name: "主页重定向",            path: "/",            redirect: "/index"        }, {            name: "主页",            path: "/index",            component: index,            children: [                {                    name: "修改操作",                    path: "/update",                    component: update,                }, {                    name: "查看全部",                    path: "/selectAll",                    component: selectAll,                }, {                    name: "查看一个",                    path: "/selectOne",                    component: selectOne,                }, {                    name: "添加一个",                    path: "/insert",                    component: insert,                }            ]        }    ]})export default router

    App.vue

    <template>    <div id="app">        <router-view/>    </div></template><script>export default {    name: 'App',}</script>

    index.vue

    <template>    <div>        <router-link to="update">update</router-link>        <br>        <router-link to="selectAll"> selectAll</router-link>        <br>        <router-link to="selectOne"> selectOne</router-link>        <br>        <router-link to="insert"> insert</router-link>        <br>        <br>        <router-view></router-view>    </div></template><script>export default {    name: "index"}</script><style scoped></style>

    insert.vue

    <template>    <div>        insert    </div></template><script>export default {    name: "insert"}</script><style scoped></style>

    selectOne.vue

    <template>    <div>        selectOne    </div></template><script>export default {    name: "selectOne"}</script><style scoped></style>

    selectAll.vue

    <template>    <div>        selectAll    </div></template><script>export default {    name: "selectAll"}</script><style scoped></style>

    update.vue

    <template>    <div>        update    </div></template><script>export default {    name: "update"}</script><style scoped></style>

    测试

    启动项目

    npm run serve

    访问:http://localhost:8080/

    怎么搭建SpringBoot+Vue前后端分离

    点击相关标签时会显示响应页面

    3.5 引入Element UI

    npm i element-ui -S

    main.js

    import Vue from 'vue'import App from './App.vue'import router from './router'import ElementUI from 'element-ui'import 'element-ui/lib/theme-chalk/index.css'Vue.config.productionTip = falseVue.use(ElementUI)new Vue({    render: h => h(App),    router}).$mount('#app')

    3.6 使用Element UI美化页面

    index.vue

    <template>    <div>        <el-menu class="el-menu-demo" mode="horizontal" :router="true">            <el-menu-item index="/selectAll">全部学生</el-menu-item>            <el-menu-item index="/insert">添加学生</el-menu-item>            <el-menu-item index="/selectOne">查看学生</el-menu-item>            <el-menu-item index="/update">修改学生</el-menu-item>        </el-menu>        <router-view></router-view>    </div></template><script>export default {    name: "index"}</script><style scoped></style>

    insert.vue

    <template>    <div>        <el-form :model="ruleForm" status-icon  label-width="100px" class="demo-ruleForm" >            <el-form-item label="姓名" prop="pass">                <el-input type="text" v-model="ruleForm.name" ></el-input>            </el-form-item>            <el-form-item label="年龄" prop="checkPass">                <el-input type="text" v-model="ruleForm.age" ></el-input>            </el-form-item>            <el-form-item>                <el-button type="primary" @click="submitForm('ruleForm')">提交</el-button>            </el-form-item>        </el-form>    </div></template><script>export default {    name: "insert",    data() {        return {            ruleForm: {                name: '',                age: ''            }        };    },    methods: {        submitForm(formName) {            this.$refs[formName].validate((valid) => {                if (valid) {                    alert('submit!');                } else {                    console.log('error submit!!');                    return false;                }            });        },    }}</script><style scoped></style>

    selectOne.vue

    <template>    <div>        <el-form :model="ruleForm" status-icon label-width="100px" class="demo-ruleForm"                 >            <el-form-item label="ID" prop="pass">                <el-input type="text" v-model="ruleForm.id"></el-input>            </el-form-item>            <el-form-item label="姓名" prop="pass">                <el-input type="text" v-model="ruleForm.name"></el-input>            </el-form-item>            <el-form-item label="年龄" prop="checkPass">                <el-input type="text" v-model="ruleForm.age"></el-input>            </el-form-item>            <el-form-item>                <el-button type="primary" @click="submitForm('ruleForm')">提交</el-button>                <el-button @click="resetForm('ruleForm')">重置</el-button>            </el-form-item>        </el-form>    </div></template><script>export default {    name: "selectOne",    data() {        return {            ruleForm: {                id: '',                name: '',                age: ''            }        };    },    methods: {        submitForm(formName) {            this.$refs[formName].validate((valid) => {                if (valid) {                    alert('submit!');                } else {                    console.log('error submit!!');                    return false;                }            });        },        resetForm(formName) {            this.$refs[formName].resetFields();        }    }}</script><style scoped></style>

    selectAll.vue

    <template>    <div>        <template>            <el-table                  :data="tableData"                  >                <el-table-column                      prop="id"                      label="ID"                      width="180">                </el-table-column>                <el-table-column                      prop="name"                      label="姓名"                      width="180">                </el-table-column>                <el-table-column                      prop="age"                      label="年龄">                </el-table-column>                <el-table-column                      label="操作">                    <template>                        <el-button type="warning" size="small">修改</el-button>                        <el-button type="danger" size="small">删除</el-button>                    </template>                </el-table-column>            </el-table>        </template>    </div></template><script>export default {    name: "selectAll",    data() {        return {            tableData: []        }    }}</script><style scoped></style>

    update.vue

    <template>    <div>        <el-form :model="ruleForm" status-icon label-width="100px" class="demo-ruleForm"                 >            <el-form-item label="ID" prop="pass">                <el-input type="text" v-model="ruleForm.id"></el-input>            </el-form-item>            <el-form-item label="姓名" prop="checkPass">                <el-input type="text" v-model="ruleForm.name"></el-input>            </el-form-item>            <el-form-item label="年龄" prop="age">                <el-input type="text" v-model="ruleForm.age"></el-input>            </el-form-item>            <el-form-item>                <el-button type="warning" @click="submitForm('ruleForm')">修改</el-button>            </el-form-item>        </el-form>    </div></template><script>export default {    name: "update",    data() {        return {            ruleForm: {                id: '',                name: '',                age: ''            }        };    },    methods: {        submitForm(formName) {            this.$refs[formName].validate((valid) => {                if (valid) {                    alert('submit!');                } else {                    console.log('error submit!!');                    return false;                }            });        },        resetForm(formName) {            this.$refs[formName].resetFields();        }    }}</script><style scoped></style>

    效果

    怎么搭建SpringBoot+Vue前后端分离

    怎么搭建SpringBoot+Vue前后端分离

    3.7 整合axios与Spring Boot后端交互

    npm install axios --save

    insert.vue

    <template>    <div>        <el-form :model="ruleForm" status-icon label-width="100px" class="demo-ruleForm"                 >            <el-form-item label="姓名" prop="pass">                <el-input type="text" v-model="ruleForm.name"></el-input>            </el-form-item>            <el-form-item label="年龄" prop="checkPass">                <el-input type="text" v-model="ruleForm.age"></el-input>            </el-form-item>            <el-form-item>                <el-button type="primary" @click="submitForm()">提交</el-button>            </el-form-item>        </el-form>    </div></template><script>import axios from 'axios'export default {    name: "insert",    data() {        return {            ruleForm: {                name: '',                age: ''            }        };    },    methods: {        submitForm() {            axios.post("http://localhost:8081/student/save", this.ruleForm).then(function (resp) {                console.log(resp)            })        },    }}</script><style scoped></style>

    selectOne.vue

    <template>    <div>        <el-form :model="ruleForm" status-icon label-width="100px" class="demo-ruleForm"                 >            <el-form-item label="ID" prop="pass">                <el-input type="text" v-model="ruleForm.id"></el-input>            </el-form-item>            <el-form-item label="姓名" prop="pass">                <el-input type="text" v-model="ruleForm.name"></el-input>            </el-form-item>            <el-form-item label="年龄" prop="checkPass">                <el-input type="text" v-model="ruleForm.age"></el-input>            </el-form-item>        </el-form>    </div></template><script>import axios from "axios";export default {    name: "selectOne",    data() {        return {            ruleForm: {                id: '',                name: '',                age: ''            }        };    },    methods: {        getStudent() {            const _this = this;            axios.get("http://localhost:8081/student/findById/" + this.$route.query.id).then(function (resp) {                _this.ruleForm = resp.data;            })        }    },    created() {        this.getStudent();    }}</script><style scoped></style>

    selectAll.vue

    <template>    <div>        <template>            <el-table                  :data="tableData"                  >                <el-table-column                      prop="id"                      label="ID"                      width="180">                </el-table-column>                <el-table-column                      prop="name"                      label="姓名"                      width="180">                </el-table-column>                <el-table-column                      prop="age"                      label="年龄">                </el-table-column>                <el-table-column                      label="操作">                    <template slot-scope="scope">                        <el-button type="primary" size="small" @click="select(scope.row)">查看</el-button>                        <el-button type="warning" size="small" @click="update(scope.row)">修改</el-button>                        <el-button type="danger" size="small" @click="remove(scope.row)">删除</el-button>                    </template>                </el-table-column>            </el-table>        </template>    </div></template><script>import axios from "axios";export default {    name: "selectAll",    data() {        return {            tableData: []        }    },    methods: {        getData() {            const _this = this;            axios.get("http://localhost:8081/student/findAll").then(function (resp) {                _this.tableData = resp.data;            })        },        remove(stu) {            const _this = this;            if (confirm("确定删除吗?")) {                axios.delete("http://localhost:8081/student/remove/" + stu.id).then(function (resp) {                    if (resp.data == 1) {                        _this.getData();                    }                })            }        },        select(stu) {            this.$router.push({                path: "/selectOne",                query:{                    id: stu.id                }            })        },        update(stu) {            this.$router.push({                path: "/update",                query:{                    id: stu.id                }            })        }    },    created() {        this.getData();    }}</script><style scoped></style>

    update.vue

    <template>    <div>        <el-form :model="ruleForm" status-icon label-width="100px" class="demo-ruleForm"                 >            <el-form-item label="ID">                <el-input type="text" v-model="ruleForm.id" disabled></el-input>            </el-form-item>            <el-form-item label="姓名">                <el-input type="text" v-model="ruleForm.name"></el-input>            </el-form-item>            <el-form-item label="年龄">                <el-input type="text" v-model="ruleForm.age"></el-input>            </el-form-item>            <el-form-item>                <el-button type="warning" @click="submitForm()">修改</el-button>            </el-form-item>        </el-form>    </div></template><script>import axios from "axios";export default {    name: "update",    data() {        return {            ruleForm: {                id: '',                name: '',                age: ''            }        };    },    methods: {        submitForm() {            axios.post("http://localhost:8081/student/update", this.ruleForm).then(function (resp) {                console.log(resp)            })        },        getStudent() {            const _this = this;            axios.get("http://localhost:8081/student/findById/" + this.$route.query.id).then(function (resp) {                _this.ruleForm = resp.data;            })        }    },    created() {        this.getStudent();    }}</script><style scoped></style>

    读到这里,这篇“怎么搭建SpringBoot+Vue前后端分离”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

    免责声明:

    ① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

    ② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

    怎么搭建SpringBoot+Vue前后端分离

    下载Word文档到电脑,方便收藏和打印~

    下载Word文档

    猜你喜欢

    怎么搭建SpringBoot+Vue前后端分离

    本文小编为大家详细介绍“怎么搭建SpringBoot+Vue前后端分离”,内容详细,步骤清晰,细节处理妥当,希望这篇“怎么搭建SpringBoot+Vue前后端分离”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。1
    2023-07-05

    SpringBoot+mybatis+Vue如何实现前后端分离项目

    这篇文章主要为大家展示了“SpringBoot+mybatis+Vue如何实现前后端分离项目”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“SpringBoot+mybatis+Vue如何实现前后
    2023-06-22

    Springboot怎么实现前后端分离excel下载

    本篇内容介绍了“Springboot怎么实现前后端分离excel下载”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!Springboot前后端
    2023-06-25

    Flask Vue前后端分离实例分析

    这篇文章主要讲解了“Flask Vue前后端分离实例分析”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Flask Vue前后端分离实例分析”吧!vue官网:开源的 Javascript 框架
    2023-07-02

    git前后端分离怎么用

    随着前端技术的繁荣发展,前端领域出现了越来越多的框架和技术,前后端分离也成为了现阶段 web 开发的一种趋势。其中,git 的使用对于前后端分离的管理起到了至关重要的作用。本文将介绍 git 前后端分离的使用方法。一、前后端分离的基本概念前
    2023-10-22

    SpringBoot+Vue前后端分离实现审核功能的示例

    SpringBoot+Vue前后端示例展示如何实现审核功能,包括后端实体、服务、SpringSecurity配置和前端组件。后端使用Java和SpringBoot,定义了审核实体、仓库和服务。前端使用Vue.js,创建了组件、模板和数据模型,并连接到后端服务。集成包括定义RESTAPI、设置Vue路由和注册审核组件。该示例提供了可扩展、安全和用户友好的解决方案,使开发人员能够轻松地将审核功能添加到他们的应用程序中。
    SpringBoot+Vue前后端分离实现审核功能的示例
    2024-04-02

    django前后端分离怎么实现

    要实现Django的前后端分离,可以使用Django Rest Framework(DRF)作为后端框架,同时使用一个前端框架(如React、Vue.js)来处理前端的界面和交互逻辑。下面是一个简单的实现步骤:1. 在Django项目中安装
    2023-10-09

    编程热搜

    • Python 学习之路 - Python
      一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
      Python 学习之路 - Python
    • chatgpt的中文全称是什么
      chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
      chatgpt的中文全称是什么
    • C/C++中extern函数使用详解
    • C/C++可变参数的使用
      可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
      C/C++可变参数的使用
    • css样式文件该放在哪里
    • php中数组下标必须是连续的吗
    • Python 3 教程
      Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
      Python 3 教程
    • Python pip包管理
      一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
      Python pip包管理
    • ubuntu如何重新编译内核
    • 改善Java代码之慎用java动态编译

    目录