Java基于SpringBoot的体脂健康管理系统+Vue[毕业设计]
文末获取资源,收藏关注不迷路
文章目录
- 项目介绍
- 技术介绍
- 项目界面
- 关键代码
- 目录
项目介绍
随着网络的不断发展,互联网技术逐渐成为人们生活中不可或缺的重要组成部分,国家经济活动也受到其显著影响。然而,近年来,一些网络平台由于用户数量急剧增加,导致传统线下管理模式难以满足人们日益增长的需求,为了提升用户体验,本文基于Java语言、SpringBoot框架以及MySQL等技术支持下,共同完成了该系统的开发工作,旨在解决信息过载与不够精准等问题。该系统运行后具有较好的效果,同时有效降低了系统的复杂度与运行成本[3]。
技术介绍
1、账户名称为abo,口令为abo。
2、使用Eclipse或idea作为开发环境;MySQL作为数据库;Java语言被采用。
3、配置完成后点击启动按钮即可运行系统。
4、将数据库连接信息设置于src/main/resources/application.yml文件中完成。
5.maven版本号定为.apache-maven-3.3.9。
6、开发语言选择Java。
7、框架包括Springboot或SSM。
8、前端框架采用Vue.js实现。
9、JDK版本要求至少1.8及以上。
10、服务器操作系统需安装tomcat8及以上版本。
11、数据库管理工具选Navicat软件。
12、开发软件包括IDEA且支持Eclipse。
13、应用需求可选的技术点包括Java, PHP, Python, Android, 小程序, Vue, 爬虫, C#, ASP.net等技术方向
Spring Boot 是当前最流行的 Java 框架之一,在其框架结构上实现了高度的简化性设计,在提升开发效率与便捷性方面表现尤为突出。
其中 src/main/java 目录包含程序的主要开发内容及入口点;而 src/main/resources 目录则用于存放配置文件;src/test/java 目录则存放测试相关的代码。
默认支持.applications属性文件和.yaml格式的配置文件。
1,applyingproperties 2,applyingyaml
项目界面


















关键代码
package com.controller;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import com.annotation.IgnoreAuth;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.entity.TokenEntity;
import com.entity.UserEntity;
import com.service.TokenService;
import com.service.UserService;
import com.utils.CommonUtil;
import com.utils.MPUtil;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.ValidatorUtils;
/** * 登录相关
*/
@RequestMapping("users")
@RestController
public class UserController{
@Autowired
private UserService userService;
@Autowired
private TokenService tokenService;
/** * 登录
*/
@IgnoreAuth
@PostMapping(value = "/login")
public R login(String username, String password, String captcha, HttpServletRequest request) {
UserEntity user = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", username));
if(user==null || !user.getPassword().equals(password)) {
return R.error("账号或密码不正确");
}
String token = tokenService.generateToken(user.getId(),username, "users", user.getRole());
return R.ok().put("token", token);
}
/** * 注册
*/
@IgnoreAuth
@PostMapping(value = "/register")
public R register(@RequestBody UserEntity user){
// ValidatorUtils.validateEntity(user);
if(userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername())) !=null) {
return R.error("用户已存在");
}
userService.insert(user);
return R.ok();
}
/** * 退出
*/
@GetMapping(value = "logout")
public R logout(HttpServletRequest request) {
request.getSession().invalidate();
return R.ok("退出成功");
}
/** * 密码重置
*/
@IgnoreAuth
@RequestMapping(value = "/resetPass")
public R resetPass(String username, HttpServletRequest request){
UserEntity user = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", username));
if(user==null) {
return R.error("账号不存在");
}
user.setPassword("123456");
userService.update(user,null);
return R.ok("密码已重置为:123456");
}
/** * 列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,UserEntity user){
EntityWrapper<UserEntity> ew = new EntityWrapper<UserEntity>();
PageUtils page = userService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.allLike(ew, user), params), params));
return R.ok().put("data", page);
}
/** * 列表
*/
@RequestMapping("/list")
public R list( UserEntity user){
EntityWrapper<UserEntity> ew = new EntityWrapper<UserEntity>();
ew.allEq(MPUtil.allEQMapPre( user, "user"));
return R.ok().put("data", userService.selectListView(ew));
}
/** * 信息
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") String id){
UserEntity user = userService.selectById(id);
return R.ok().put("data", user);
}
/** * 获取用户的session用户信息
*/
@RequestMapping("/session")
public R getCurrUser(HttpServletRequest request){
Long id = (Long)request.getSession().getAttribute("userId");
UserEntity user = userService.selectById(id);
return R.ok().put("data", user);
}
/** * 保存
*/
@PostMapping("/save")
public R save(@RequestBody UserEntity user){
// ValidatorUtils.validateEntity(user);
if(userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername())) !=null) {
return R.error("用户已存在");
}
userService.insert(user);
return R.ok();
}
/** * 修改
*/
@RequestMapping("/update")
public R update(@RequestBody UserEntity user){
// ValidatorUtils.validateEntity(user);
UserEntity u = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername()));
if(u!=null && u.getId()!=user.getId() && u.getUsername().equals(user.getUsername())) {
return R.error("用户名已存在。");
}
userService.updateById(user);//全部更新
return R.ok();
}
/** * 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
userService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
}
目录
目 录 III
第 5 章 系统实现
用户模块的功能实现
管理员端的功能实现及展示
6 系统功能验证
6.1 系统功能验证的要点
6.2 系统各功能模块验证
6.2.1 登录功能的功能验证
6.2.2 类别添加模块的功能检测
6.3 测试结果解析
总结部分
致 谢
参考文献
