SzmBoot

简单易懂的WEB框架

快速上手 →

轻量化

采用SpringBoot的设计思想,扩展实现常规框架的快速组装,整体以最小化的封装保留原框架的特性。

高性能

以最小单元的依赖进行解耦组件化,经过正式业务系统的检验,并在后期持续不断的维护更新,达到性能稳定和高效的目的。

易集成

依赖解耦,无论是初级、中级、高级程序猿都能快速的根据业务需要依赖或开启相关功能,全程无需思考。

# 1.最新版本

1.0.0.RELEASE

# 2.快速安装

# 2.1. Maven安装

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.sinszm</groupId>
            <artifactId>szm-boot</artifactId>
            <version>1.0.0.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

# 2.2. Gradle安装

compile group: 'com.sinszm', name: 'szm-boot', version: '1.0.0.RELEASE', ext: 'pom'