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://codercto.com/soft/d/19043.html

算法基础

算法基础

布拉萨德 / 邱仲潘 / 清华大学出版社 / 2005-7 / 49.00元

本书是关于算法导论的经典教材,书中包括大量例题解答与命题证明。本书是按照算法类型而不是按照应用类型对算法进行介绍,以其清晰的概念讲解赢得专家们的广泛赞誉。本书适用对象广泛。对于学习算法设计与分析的本科生和研究生,本书是优透选教材。对于从事算法计算研究和工程应用的科研人员和工程技术人员,本书也是一本优秀的基础性读物。一起来看看 《算法基础》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

URL 编码/解码
URL 编码/解码

URL 编码/解码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具