• 大小: 38.3MB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2023-07-01
  • 语言: Java
  • 标签: Java  

资源简介

为了满足社区健康医疗管理需求,建设基于互联网的社区健康医疗数据管理平台显得尤为重要,针对这样的需求,设计开发了社区健康医疗数据管理平台。系统采用了B/S架构模式,基于SSM框架,利用MySQL数据库技术管理基于WEB的社区健康医疗数据管理平台的数据信息。使用IntelliJ IDEA集成开发环境进行开发,运用了java、html、css、jQuery等编程语言,最终完成了基于Web的这个项目

资源截图

代码片段和文件信息

package com.lhc.controller;

import com.alibaba.fastjson.JSONobject;
import com.github.pagehelper.PageHelper;
import com.lhc.service.CategoryService;
import com.lhc.util.Page;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import com.lhc.pojo.Category;

import java.util.ArrayList;
import java.util.List;

// 告诉spring mvc这是一个控制器类
@Controller
@RequestMapping(““)
public class CategoryController {
    @Autowired
    CategoryService categoryService;

    @RequestMapping(“ls“)
    public ModelAndView listCategory(Page page){
        ModelAndView mav = new ModelAndView();
//        List cs= categoryService.list(page);
//        int total = categoryService.total();
        PageHelper.offsetPage(page.getStart()5);
        List cs= categoryService.list();
        // 放入转发参数
        mav.addobject(“cs“ cs);
        // 放入jsp路径
        mav.setViewName(“listCategory“);
        return mav;
    }


    @ResponseBody
    @RequestMapping(“/submitCategory“)
    public String submitCategory(@RequestBody Category category) {
        System.out.println(“SSM接受到浏览器提交的json,并转换为Category对象:“+category);
        return “ok“;
    }

    @ResponseBody
    @RequestMapping(“/getOneCategory“)
    public String getOneCategory() {
        Category c = new Category();
        c.setId(100);
        c.setName(“this is 100“);
        JSONobject json= new JSONobject();
        json.put(“category“ JSONobject.toJSON(c));
        return json.toJSONString();
    }
    @ResponseBody
    @RequestMapping(“/getManyCategory“)
    public String getManyCategory() {
        List cs = new ArrayList<>();
        for (int i = 0; i < 10; i++) {
            Category c = new Category();
            c.setId(i);
            c.setName(“id:“+i);
            cs.add(c);
        }

        return JSONobject.toJSON(cs).toString();
    }

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         128  2019-04-01 09:21  IT资源.txt
     目录           0  2018-06-07 22:48  lhcMedical\
     目录           0  2018-06-13 21:57  lhcMedical\.idea\
     文件          10  2018-03-24 23:26  lhcMedical\.idea\.name
     目录           0  2018-03-25 20:45  lhcMedical\.idea\artifacts\
     文件         296  2018-03-24 23:31  lhcMedical\.idea\artifacts\lhcMedical_war.xml
     文件        3709  2018-03-25 20:45  lhcMedical\.idea\artifacts\lhcMedical_war_exploded.xml
     文件         302  2018-03-25 11:31  lhcMedical\.idea\artifacts\testCategory_war.xml
     文件        3556  2018-03-25 11:51  lhcMedical\.idea\artifacts\testCategory_war_exploded.xml
     文件         721  2018-03-24 23:31  lhcMedical\.idea\compiler.xml
     文件         172  2018-03-24 09:49  lhcMedical\.idea\encodings.xml
     目录           0  2018-05-31 08:53  lhcMedical\.idea\inspectionProfiles\
     目录           0  2018-03-25 20:45  lhcMedical\.idea\libraries\
     文件         169  2018-03-24 00:04  lhcMedical\.idea\libraries\com_springsource_org_aopalliance_1_0_0.xml
     文件         170  2018-03-24 10:25  lhcMedical\.idea\libraries\com_springsource_org_aopalliance_1_0_01.xml
     文件         170  2018-03-24 12:37  lhcMedical\.idea\libraries\com_springsource_org_aopalliance_1_0_02.xml
     文件         221  2018-03-25 10:37  lhcMedical\.idea\libraries\junit_4_12.xml
     文件         514  2018-03-24 10:28  lhcMedical\.idea\libraries\Maven__aopalliance_aopalliance_1_0.xml
     文件         605  2018-03-24 12:41  lhcMedical\.idea\libraries\Maven__commons_fileupload_commons_fileupload_1_2_1.xml
     文件         517  2018-03-24 12:41  lhcMedical\.idea\libraries\Maven__commons_io_commons_io_1_3_2.xml
     文件         525  2018-03-24 12:41  lhcMedical\.idea\libraries\Maven__commons_lang_commons_lang_2_6.xml
     文件         558  2018-03-24 10:28  lhcMedical\.idea\libraries\Maven__commons_logging_commons_logging_1_2.xml
     文件         493  2018-03-25 20:44  lhcMedical\.idea\libraries\Maven__com_alibaba_druid_1_0_18.xml
     文件         514  2018-03-25 20:45  lhcMedical\.idea\libraries\Maven__com_alibaba_fastjson_1_2_47.xml
     文件         547  2018-03-24 12:41  lhcMedical\.idea\libraries\Maven__com_github_jsqlparser_jsqlparser_1_0.xml
     文件         596  2018-03-24 17:01  lhcMedical\.idea\libraries\Maven__com_github_pagehelper_pagehelper_5_1_2_beta.xml
     文件         578  2018-03-25 20:44  lhcMedical\.idea\libraries\Maven__javax_servlet_javax_servlet_api_3_1_0.xml
     文件         437  2018-03-24 12:41  lhcMedical\.idea\libraries\Maven__jstl_jstl_1_2.xml
     文件         455  2018-03-25 10:34  lhcMedical\.idea\libraries\Maven__junit_junit_4_12.xml
     文件         469  2018-03-25 20:44  lhcMedical\.idea\libraries\Maven__log4j_log4j_1_2_16.xml
     文件         567  2018-03-25 20:44  lhcMedical\.idea\libraries\Maven__mysql_mysql_connector_java_5_1_6.xml
............此处省略699个文件信息

评论

共有 条评论