Sptingboot+mybatis-plus学习笔记
其实我觉得你挺好的
这个作者很懒,什么都没留下…
展开
-
sprinboot 普通文件上传、ajax上传、多文件上传(亲测可用)
后端: package com.demo.controller; import com.demo.model.Emp; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.原创 2020-05-27 20:54:23 · 110 阅读 · 0 评论 -
二、springboot整合JSP
上一章我们讲到了使用springboot+mybatis-plus整合一个后端框架,本来这一章是要讲使用thymeleaf模板做增删改查,之前学过整合jsp,在这先讲一下整合JSP吧。 由于我们要使用JS作为前端页面,所以首先注释掉thymeleaf模板包。 在main目录下新建webapp\WEB-INF\views目录,作为放置JSP文件的根目录。 引入依赖: <!-- 添加servlet依赖模块 --> <dependency> <gr原创 2020-05-24 19:29:55 · 246 阅读 · 0 评论 -
IDEA快速搭建一个Springboot+Mybatis-Plus后端架构
一个springboot的项目就算搭建完成,下面引入mybatis-plus等相关依赖 <!--mybatis-plus核心库--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> &l...原创 2020-05-22 20:42:31 · 2953 阅读 · 1 评论