springboot
文章平均质量分 58
不懂技术的程序员
安得广厦千万间
展开
-
Springboot(聚合工程)+Maven+web工程
springboot工程环境搭建(idea)一.后端技术选型二.项目结构三.环境搭建1.项目聚合【1】创建父级工程SuperMarket【2】创建子工程common【3】以common的创建方式创建pojo,api,mapper,service【4】创建web【5】配置子模块间的依赖关系2.springboot的基本配置【1】在父级pom中添加依赖【2】application.properties【3】创建启动项application.java【4】创建controller测试类【5】springboot与原创 2021-02-06 16:33:34 · 3705 阅读 · 4 评论 -
springboot + mybatis-plus+html + jquery+Mustache 分页显示角色下的用户列表
显示角色列表下的用户列表前端效果图html页面模板引擎roleListTemplateuserListTemplate绑定更新事件的操作模板 userFormjs后台springboot配置mybatis-plus依赖mybatis-plus的配置文件返回角色列表在postman中测试截图pojo类的配置mapper 的配置Controllerservice返回角色下的用户列表用户的pojo类PageQueryvo 与视图交互的数据SearhUserVoSysUserVodto 与数据库交互数据传输对象用户原创 2021-03-24 12:35:51 · 605 阅读 · 0 评论 -
springboot+ajax上传表单(带有图片)
ajax上传图片前端(表单)效果图html 和 模板引擎html模板引擎引入对应的js文件显示添加后台controllerservice图片上传自定义地址 前端(表单) 效果图 html 和 模板引擎 html <%-- Created by IntelliJ IDEA. User: Administrator Date: 2021/3/15 0015 Time: 17:39 To change this template use File | Settings | File原创 2021-03-27 23:36:10 · 767 阅读 · 1 评论 -
springboot多模块(聚合工程)获取webapp下的img路径
获取webapp下的img路径 使用ApplicationHome 获取当前文件的路径 ,ApplicationHome只能在springboot工程中使用 // 上传地址 ApplicationHome applicationHome = new ApplicationHome(ImageUtils.class); String path = applicationHome.getSource().getParentFile().getParentFile().g原创 2021-03-27 23:45:18 · 1487 阅读 · 0 评论 -
springboot发送邮件(qq邮箱)
发送qq邮件前端效果图页面代码js代码后台springboot引入maven依赖配置controllerservice 前端 效果图 页面代码 <div class="loginbox row"> <h3>用户注册</h3> <form class="form-login" id="register" method="post"> <ul> <li class="form-group原创 2021-03-31 21:34:05 · 468 阅读 · 0 评论