# imis **Repository Path**: GuoZG0328/imis ## Basic Information - **Project Name**: imis - **Description**: 综合管理信息系统 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 9 - **Created**: 2020-12-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![IMIS](doc/image/imis.png) # IMIS-Boot 快速开发平台V1.0 # > [当前最新版本](https://github.com/XinLau1996/imis) : 1.0.0(发布日期:2020-06-28) ## 框架介绍 ### Java framework for enterprise web applications ### 面向企业web应用的Java框架 ### 1. 选用技术框架 | 序号 | 名字 | 描述 | | :---: | :--- | :--- | | | spring-boot-starter-parent 2.2.2.RELEASE | Spring-Boot | | | spring-boot-starter-freemarker | 页面渲染引擎 | | | spring-boot-starter-websocket | websocket消息组件 | | | spring-boot-starter-test | 单元测试组件 | | | mybatis-plus-boot-starter | MP数据库交互组件 | | | dynamic-datasource-spring-boot-starter | MP动态数据源组件 | | | spring-boot-devtools springboot | 热部署插件 | | | druid-spring-boot-starter | 数据库连接池 监控 插件 | | | org.projectlombok | lombok 简化开发插件 | | | org.crazycake shiro-redis | 权限redis缓存组件 | | | java-jwt | token组件 | | | hutool-all | 常用工具类组件 | | | assertj-core | 断言工具组件 | | | mapstruct-jdk8 | 对象映射组件 | | | mockito-core | mock测试组件 | | | spring-boot-actuator | 服务器性能监测组件 | | | spring-data-redis | redis缓存组件 | | | spring-boot-starter-quartz | Quartz定时任务 | ## 开发环境 ### 后端 ### 后端(Java)开发工具常备插件 ## 项目结构图 ```text ├─doc └─src └─main ├─java │ └─com │ └─imis │ ├─base │ │ ├─annotation │ │ ├─aspect │ │ ├─config │ │ ├─constant │ │ ├─globle │ │ ├─shiro │ │ │ ├─authc │ │ │ │ └─aop │ │ │ ├─util │ │ │ └─vo │ │ └─util │ └─module │ ├─api │ │ ├─bus │ │ ├─controller │ │ └─model │ │ ├─ro │ │ └─vo │ ├─base │ │ └─impl │ ├─quartz │ └─system │ ├─bus │ ├─controller │ ├─dao │ │ └─xml │ ├─model │ │ ├─converter │ │ ├─po │ │ ├─ro │ │ └─vo │ └─service │ └─impl └─resources ├─deployHelperConfig ├─logbackConfig ├─static │ └─template └─templates └─codegeneration └─vue └─modules ```