|
|
6 éve | |
|---|---|---|
| doc | 6 éve | |
| src | 6 éve | |
| .gitignore | 6 éve | |
| LICENSE | 6 éve | |
| README.md | 6 éve | |
| mvnw | 6 éve | |
| mvnw.cmd | 6 éve | |
| pom.xml | 6 éve |
当前版本:4.7.0
铭飞MS官网:http://ms.mingsoft.net
官网同时提供一键运行版本下载,请步移官网....
QQ交流群号: ①242805203 ②231212174(满) ③221335098(满)
很多人说铭飞MCMS是大天朝国唯一完整开源的J2EE系统!团队希望看到更多的优秀好用的开源系统,我们一直会努力下去!
文档丰富:为了让用户更快速的使用MCms系统进行开发,铭飞团队持续更新开发相关文档,如标签文档、使用文档、视频教程等;
铭飞MCMS是企业在创立初期很好的技术基础框架,加快公司项目开发进度,当然也可以对现有的系统进行升级;
个人开发者也可以使用MCMS承接外包项目;
初学JAVA的同学可以下载源代码来进行学习交流;
| 技术 | 名称 | 官网 |
|---|---|---|
| Spring Framework | 容器 | http://projects.spring.io/spring-framework |
| SpringMVC | MVC框架 | http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#mvc |
| Apache Shiro | 安全框架 | http://shiro.apache.org |
| Spring session | 分布式Session管理 | http://projects.spring.io/spring-session |
| MyBatis | ORM框架 | http://www.mybatis.org |
| Freemarker | 视图框架 | http://freemarker.foofun.cn |
| PageHelper | MyBatis分页插件 | http://git.oschina.net/free/Mybatis_PageHelper |
| Log4J | 日志组件 | http://logging.apache.org |
| Maven | 项目构建 | http://maven.apache.org |
| Elasticsearch | 分布式搜索引擎 | https://www.elastic.co |
| Redis | 分布式缓存数据库 | https://redis.io |
| hutool | 工具类 | http://hutool.mydoc.io |
| 技术 | 名称 | 官网 |
|---|---|---|
| jQuery | 函式库 | http://jquery.com/ |
| Bootstrap | 前端框架 | http://getbootstrap.com/ |
| Bootstrap-table | Bootstrap数据表格 | http://bootstrap-table.wenzhixin.net.cn/ |
| BootstrapValidator | 表单验证 | http://bootstrapvalidator.com/ |
| Font-awesome | 字体图标 | http://fontawesome.io/ |
| Waves | 点击效果插件 | https://github.com/fians/Waves/ |
| zTree | 树插件 | http://www.treejs.cn/v3/ |
| Select2 | 选择框插件 | https://github.com/select2/select2 |
| jQuery EasyUI | 基于jQuery的UI插件集合体 | http://www.jeasyui.com/ |
| Vue | MVVM框架 | https://cn.vuejs.org/ |
| AmazeUI | 移动端UI | http://amazeui.org/ |
| Plupload | 上传控件 | http://www.plupload.com/ |
| freemarker | 模板引擎 | http://freemarker.foofun.cn/toc.html |
| validator | 验证库 | https://github.com/chriso/validator.js |
| animate | 动画 | http://daneden.github.io/animate.css/ |
| icon | 适量小图标(待更新) | http://ms.mingsoft.net/html/86//6048/index.html |
建议开发者使用以下环境,这样避免版本带来的问题
铭飞MCms是铭飞MS平台的一个子模块,同时铭飞MCms所依赖的模块都是用maven方式提供了源码获取方式,具体看pom.xml
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-base</artifactId>
<version>${ms.base.version}</version>
</dependency>
<!-- ms-base源码jar包 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-base</artifactId>
<version>${ms.base.version}</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<!-- ms-basic基础模块war包,包含后台管理的基础功能 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-basic</artifactId>
<version>${ms.basic.version}</version>
<type>war</type>
</dependency>
<!-- ms-basic源码jar包 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-basic</artifactId>
<version>${ms.basic.version}</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<!-- ms-basic开发依赖,主要方便业务开发 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-basic</artifactId>
<version>${ms.basic.version}</version>
<classifier>classes</classifier>
<scope>provided</scope>
</dependency>
<!-- ms-mdiy自定义模块,自定义表单、自定义搜索、自定义页面等 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-mdiy</artifactId>
<version>${ms.mdiy.version}</version>
<type>war</type>
</dependency>
<!-- ms-mdiy自定义模块源码 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-mdiy</artifactId>
<version>${ms.mdiy.version}</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<!-- ms-mdiy开发依赖,主要方便业务开发 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-mdiy</artifactId>
<version>${ms.mdiy.version}</version>
<classifier>classes</classifier>
<scope>provided</scope>
</dependency>
<!-- ms-mpeople用户模块,包含用户的常规功能,详细描述见MStore -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-mpeople</artifactId>
<version>${ms.mpeople.version}</version>
<type>war</type>
</dependency>
<!-- ms-mpeople用户模块源码 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-mpeople</artifactId>
<version>${ms.mpeople.version}</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<!-- ms-mpeople开发依赖,主要方便业务开发 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-mpeople</artifactId>
<version>${ms.mpeople.version}</version>
<classifier>classes</classifier>
<scope>provided</scope>
</dependency>