文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

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

2023-06-22 03:51

关注

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

一、SpringBoot环境搭建

1、项目的数据库

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

SET NAMES utf8mb4;SET FOREIGN_KEY_CHECKS = 0;-- ------------------------------ Table structure for t_emp-- ----------------------------DROP TABLE IF EXISTS `t_emp`;CREATE TABLE `t_emp`  (  `id` int NOT NULL AUTO_INCREMENT,  `name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,  `salary` double NOT NULL,  `age` int NOT NULL,  PRIMARY KEY (`id`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;-- ------------------------------ Records of t_emp-- ----------------------------INSERT INTO `t_emp` VALUES (2, '杨福君', 9000, 19);INSERT INTO `t_emp` VALUES (6, '邓正武', 18000, 25);INSERT INTO `t_emp` VALUES (8, '王恒杰', 12000, 21);INSERT INTO `t_emp` VALUES (9, '张西', 8000, 20);SET FOREIGN_KEY_CHECKS = 1;

2、项目所需依赖

<!--继承springboot的父项目 ,放在dependencies平级下-->  <parent>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-parent</artifactId>    <version>2.2.5.RELEASE</version>  </parent>  <dependencies>    <!--springboot依赖-->    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter</artifactId>    </dependency>    <dependency>      <groupId>org.mybatis.spring.boot</groupId>      <artifactId>mybatis-spring-boot-starter</artifactId>      <version>2.1.2</version>    </dependency>    <!--引入springboot的web支持-->    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-web</artifactId>    </dependency>    <!--mysql-->    <dependency>      <groupId>mysql</groupId>      <artifactId>mysql-connector-java</artifactId>      <version>8.0.16</version>    </dependency>    <!--数据源连接池-->    <dependency>      <groupId>com.alibaba</groupId>      <artifactId>druid</artifactId>      <version>1.1.12</version>    </dependency>    <!--引入springboot的test支持-->    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-test</artifactId>    </dependency>  </dependencies></project>

3、application.yml文件

server:  port: 8080  servlet:    context-path: /emsspring:  datasource:    type: com.alibaba.druid.pool.DruidDataSource  #数据源类型    driver-class-name: com.mysql.cj.jdbc.Driver   #加载驱动    url: jdbc:mysql://localhost:3306/ems?useSSL=false&serverTimezone=UTC    username: root    password: rootmybatis:  mapper-locations: classpath:com/tjcu/mapper@Controller@CrossOrigin@ResponseBodypublic class EmpController {    @Autowired    private EmpService empService;    @RequestMapping("/emp/queryall")    public  List<Emp> queryall(){        List<Emp> emps = empService.showEmp();        return emps;    }        @RequestMapping("/emp/delete")    public void delete(Integer id){        empService.deleteById(id);    }    @RequestMapping("/emp/add")    public void add(@RequestBody Emp emp){        if(emp.getId()!=0){            empService.updateEmp(emp);        }else {            emp.setId(null);            empService.insertEmp(emp);        }    }    @RequestMapping("/emp/queryOne")    public Emp query(Integer id){        Emp emp = empService.selectEmpById(id);        return emp;    }}

3、mapper文件

<mapper namespace="com.tjcu.dao.EmpDao">    <insert id="insertEmp">        insert into t_emp        values (#{id}, #{name}, #{salary}, #{age})    </insert>    <select id="showEmp" resultType="emp">        select *        from t_emp    </select>    <update id="updateEmp">        update t_emp        <set>            <if test="name!=null">                name=#{name},            </if>            <if test="salary!=null">                salary=#{salary},            </if>            <if test="age!=null">                age=#{age}            </if>        </set>        where id=#{id}    </update>    <delete id="deleteById">        delete from t_emp where id=#{id}    </delete>    <select id="selectEmpById" resultType="emp">        select *        from t_emp where id=#{id}    </select></mapper>

4、项目完整源代码

gitee开源:https://gitee.com/wanghengjie563135/springboot_mybatis_vue.git

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

以上是“SpringBoot+mybatis+Vue如何实现前后端分离项目”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

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

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

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯