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

码农软件 · 软件分类 · 项目构建 · 2019-11-15 13:43:27

软件介绍

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]
		)
	}

本文地址:https://www.codercto.com/soft/d/19043.html

The Linux Programming Interface

The Linux Programming Interface

Michael Kerrisk / No Starch Press / 2010-11-6 / GBP 79.99

The Linux Programming Interface describes the Linux API (application programming interface)-the system calls, library functions, and other low-level interfaces that are used, directly or indirectly, b......一起来看看 《The Linux Programming Interface》 这本书的介绍吧!

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具