Giter VIP home page Giter VIP logo

kantboot's Introduction

kantboot基础架构

安装

git clone https://github.com/buyinet/kantboot.git

1、kantboot-application(配置文件模块)

此模块为配置文件框架,所有子模块都会使用此处的配置文件。

是否为启动模块:否

是否为pom模块:否

2、kantboot-util(工具类模块)

此模块为工具类模块

是否为启动模块:否

是否为pom模块:是

子模块:

(1) kantboot-util-common
(2) kantboot-util-core

2.1、kantboot-util-common(通用工具类)

此模块为通用工具类,引入此工具类的项目,无需配置数据库。

是否为启动模块:否

是否为pom模块:是

依赖

<dependency>
    <groupId>com.kantboot</groupId>
    <artifactId>kantboot-util-common</artifactId>
    <version>${kantboot.version}</version>
</dependency>

例如

RestResult 此类是用来规范RestfulApi,让控制器返回

引入:

import RestResult;

操作案例:

public RestResult<?> opt(){
    Map<String,Object> map=new HashMap<>();
    map.put("intoData",new Date());
    map.put("opt":"笑笑");
    return RestResult.success(map,"操作成功");
}

详细阅读此模块,查看 kantboot-util/kantboot-util-common 下的README.md

3、kantboot-system (系统模块)

此模块为系统模块。

是否为启动模块:否

是否为pom模块: 是

子模块:

kantboot-system-module (包含实体和业务逻辑,但不运行)

kantboot-system-web-starter(调用kantboot-system-module来运行)

kantboot's People

Contributors

buyinet avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.