微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

bboot bboss 的快速开发/部署/运行环境工具包

程序名称:bboot

授权协议: Apache-2.0

操作系统: 跨平台

开发语言: Java

bboot 介绍

bboot是bboss的快速开发/部署/运行环境工具包,基于gradle管理项目工程,内置tomcat/jetty两种容器,根据需要进行选取,集成bboss主要模块有:

  1. bboss ioc

  2. mvc

  3. 持久层

  4. Taglib标签库

  5. kafka

  6. bboss data(redis/mongodb/elasticsearch)

  7. rpc/http/cxfwebservice

  8. quartz任务调度等模块

  9. security ticket

  10. session共享

在项目中导入bboot gradle依赖:

  • tomcat

    dependencies {
    testCompile ‘junit:junit:4.12’

        compile  (
    
                [group: 'com.bbossgroups.boot', name: 'bboot-starter-tomcat', version: '5.0.3.8.3', transitive: true]
    
        )
    
        runtime(
                [group: 'com.bbossgroups', name: 'bboss-rt', version: '5.0.3.8.3', transitive: false]
        )
    }
    
  • jetty

    dependencies {
    testCompile ‘junit:junit:4.12’

        compile  (
    
                [group: 'com.bbossgroups.boot', name: 'bboot-starter-jetty', version: '5.0.3.8.3', transitive: true]
    
        )
    
        runtime(
                [group: 'com.bbossgroups', name: 'bboss-rt', version: '5.0.3.8.3', transitive: false]
        )
    }
    

bboot 官网

www.bbossgroups.com

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐