赞
踩
目录
摘要 1
summary 2
一.项目简介 4
1.1背景分析 4
1.2功能模块 5
二、健康管理系统方案设计原则 5
2.1、顶层设计与统筹协调原则 5
2.2、先进性与实用性原则 5
2.3、开放性与扩充性原则 6
2.4、可靠性和安全性原则 6
2.5、规范化和标准性原则 7
2.6、信息全面与实时性原则 7
三.健康管理系统服务流程 7
3.1、健康管理体检 7
3.2、健康评估 7
3.3、健康管理咨询 7
3.4、健康管理后续服务 8
3.5、专项的健康及疾病管理服务 8
四.数据库设计 8
4.1表结构 8
4.2ER图 13
五.项目实现 13
5.1项目maven依赖配置 13
5.2项目配置 23
5.3加密工具类 27
5.4文件上传功能 30
5.5主要功能 34
6.项目展示 42
三.健康管理系统服务流程
3.1、健康管理体检
健康管理体检是以人群的健康需求为基础,按照早发现,早干预的原则来选定体格检查的项目。检查的结果对后期的健康干预活动具有明确的指导意义。健康管理体检项目可以根据个人的年龄、性别、工作特点等进行调整。目前一般的体检服务所提供的信息应该可以满足这方面的要求。
3.2、健康评估
通过分析个人健康史、家族史、生活方式和从精神压力等问卷获取的资料,可以为服务对象提供一系列的评估报告,其中包括用来反映各项检查指标状况的个人健康体检报告,个人总体健康评估报告,精神压力评估报告等。
3.3、健康管理咨询
在完成上述步骤后,个人可以得到不同层次的健康咨询服务。个人可以去健康管理服务中心接受咨询,也可以由健康管理师通过电话与个人进行沟通。内容可以包括以下几方面:解释个人健康信息及健康评估结果及其对健康的影响,制定健康管理计划,提供健康指导,制定随访跟踪计划等。
3.4、健康管理后续服务
健康管理的后续服务内容主要取决于被服务者(人群)的情况以及资源的多少,可以根据个人及人群的需求提供不同的服务。后续服务的形式可以是通过互联网查询个人健康信息和接受健康指导,定期寄送健康管理通讯和健康提示;以及提供个性化的健康改善行动计划。监督随访是后续服务的一个常用手段。随访的主要内容是检查健康管理计划的实现状况,并检查(必要时测量)主要危险因素的变化情况。健康教育课堂也是后续服务的重要措施,在营养改善、生活方式改变与疾病控制方面有很好的效果。
3.5、专项的健康及疾病管理服务
除了常规的健康管理服务外,还可根据具体情况为个体和群体提供专项的健康管理服务。这些服务的设计通常会按病人及健康人来划分。对已患有慢性病的个体,可选择针对特定疾病或疾病危险因素的服务,如糖尿病管理、心血管疾病及相关危险因素管理、精神压力缓解、戒烟、运动、营养及膳食咨询等。对没有慢性病的个体,可选择的服务也很多,如个人健康教育、生活方式改善咨询、疾病高危人群的教育及维护项目等。
五.项目实现
5.1项目maven依赖配置
<project xmlns=“http://maven.apache.org/POM/4.0.0” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.13.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
com.sport
sport
0.0.1-SNAPSHOT
sport
Demo project for Spring Boot
<java.version>1.8</java.version>
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--实现Spring Boot项目的热部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!--mybatis依赖--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.1.1</version> </dependency> <!--mysql依赖--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.46</version> <scope>runtime</scope> </dependency> <!--<dependency>--> <!--<groupId>org.springframework.boot</groupId>--> <!--<artifactId>spring-boot-starter-data-jpa</artifactId>--> <!--</dependency>--> <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.3.5</version> </dependency> <!--前端模版引擎,可完全替代jsp--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <!--使用注解在源码中不需要写一些通用的方法,但是在编译生成的字节码文件中会帮我们生成这些方法--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.10</version> </dependency> <!--阿里的数据源--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.19</version> </dependency> <!--jean推理机--> <dependency> <groupId>org.apache.jena</groupId> <artifactId>apache-jena</artifactId> <version>3.8.0</version> <type>pom</type> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sport</groupId> <artifactId>sport</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> <!--抓取网页--> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.7.3</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.66</version> </dependency> <!--阿里云oss依赖(必须)--> <dependency> <groupId>com.aliyun.oss</groupId> <artifactId>aliyun-sdk-oss</artifactId> <version>3.10.2</version> </dependency> <!--日期工具依赖(非必须)--> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.10.1</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.10</version> <scope>provided</scope> </dependency>
<plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <!--mybatis generator 自动生成代码插件--> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.5</version> <configuration> <!--generatorConfig.xml位置--> <configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile> <overwrite>true</overwrite> <verbose>true</verbose> </configuration> <!--此处必须添加mysql驱动包--> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <!--<scope>runtime</scope>--> <version>8.0.18</version> </dependency> </dependencies> </plugin> </plugins>
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/sport?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai
username: root
password: 123456
resources:
# 配置静态资源路径
static-locations: classpath:/templates/,classpath:/static/
chain:
strategy:
content:
enabled: true
paths: /**
mybatis-plus:
mapper-locations: classpath:mapper/*Mapper.xml
type-aliases-package: com.fengwenyi.mp3demo.model
configuration:
# 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
cache-enabled: true
#启动结果集自动映射
auto-mapping-behavior: partial
#驼峰映射 多数据源时,必须使用自定义配置,比如使用配置类来实现
map-underscore-to-camel-case: true
mybatis:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
mapper-locations: classpath:mappers/*.xml
type-aliases-package: com.sports.entity
password:
salt: geelysdafaqj23ou89ZXcj@#KaTeX parse error: Expected 'EOF', got '#' at position 2: @#̲#@KJdjklj;D…/dSF.,
#aliyun:
oss:
endpoint: oss-cn-beijing.aliyuncs.com
url: https://sport-image-manage.oss-cn-beijing.aliyuncs.com/
accessKeyId: LTAI4GCFeP6gnz7Ru4Z4tuSa
accessKeySecret: iMg6aNpSrtpQMyeV1sD83GF0I5PbTP
bucketName: sport-image-manage
5.3加密工具类
public class MD5Util {
private static String byteArrayToHexString(byte b[]) { StringBuffer resultSb = new StringBuffer(); for (int i = 0; i < b.length; i++) resultSb.append(byteToHexString(b[i])); return resultSb.toString(); } private static String byteToHexString(byte b) { int n = b; if (n < 0) n += 256; int d1 = n / 16; int d2 = n % 16; return hexDigits[d1] + hexDigits[d2]; } /** * 返回大写MD5 * * @param origin * @param charsetname * @return */ private static String MD5Encode(String origin, String charsetname) { String resultString = null; try { resultString = new String(origin); MessageDigest md = MessageDigest.getInstance("MD5"); if (charsetname == null || "".equals(charsetname)) resultString = byteArrayToHexString(md.digest(resultString.getBytes())); else resultString = byteArrayToHexString(md.digest(resultString.getBytes(charsetname))); } catch (Exception exception) { } return resultString.toUpperCase(); } public static String MD5EncodeUtf8(String origin) { // 获取盐值 origin = origin + PropertiesUtil.getProperty("password.salt", ""); return MD5Encode(origin, "utf-8"); } private static final String hexDigits[] = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"};
}
5.4文件上传功能
/**
*/
public class OSSBootUtil {
private OSSBootUtil(){} /** * oss 工具客户端 */ private volatile static OSSClient ossClient = null; /** * 上传文件至阿里云 OSS * 文件上传成功,返回文件完整访问路径 * 文件上传失败,返回 null * * @param ossConfig oss 配置信息 * @param file 待上传文件 * @param fileDir 文件保存目录 * @return oss 中的相对文件路径 */ public static String upload(OSSConfig ossConfig, MultipartFile file, String fileDir){ initOSS(ossConfig); StringBuilder fileUrl = new StringBuilder(); try { String suffix = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf('.')); String fileName = System.currentTimeMillis() + "-" + UUID.randomUUID().toString().substring(0,18) + suffix; if (!fileDir.endsWith("/")) { fileDir = fileDir.concat("/"); } fileUrl = fileUrl.append(fileDir + fileName); ossClient.putObject(ossConfig.getBucketName(), fileUrl.toString(), file.getInputStream()); } catch (IOException e) { e.printStackTrace(); return null; } fileUrl = fileUrl.insert(0,ossConfig.getUrl()); return fileUrl.toString(); } /** * 初始化 oss 客户端 * @param ossConfig * @return */ private static OSSClient initOSS(OSSConfig ossConfig) { if (ossClient == null ) { synchronized (OSSBootUtil.class) { if (ossClient == null) { ossClient = new OSSClient(ossConfig.getEndpoint(), new DefaultCredentialProvider(ossConfig.getAccessKeyId(), ossConfig.getAccessKeySecret()), new ClientConfiguration()); } } } return ossClient; }
}
5.5主要功能
疾病等级的判断
package com.sports.controller;
import com.alibaba.fastjson.JSONArray;
import com.sports.common.ServerResponse;
import com.sports.entity.FatigueDegree;
import com.sports.exception.FatigueDegreeException;
import com.sports.service.impl.FatigueDegreeServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpSession;
@RestController
@RequestMapping(“/fatigueDegree/”)
@CrossOrigin(origins=“*”,maxAge=3600)
public class FatigueDegreeController {
@Autowired FatigueDegreeServiceImpl fatigueDegreeService; /** * 疲劳度等级的添加 */ @RequestMapping(value = "addFatigueDegree.do", method = RequestMethod.POST) @Transactional(rollbackFor = FatigueDegreeException.class) public ServerResponse addFatigueDegree(FatigueDegree fatigueDegree){ return fatigueDegreeService.addFatigueDegree(fatigueDegree); } /**
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。