名稱描述
spring-boot-starter
spring boot 核心包,包括自動裝配,日誌,以及yaml檔案解析
spring-boot-starter-actuator
幫助在生產環境下監控和管理 spring boot 應用
spring-boot-starter-amqp
spring boot 快速整合 rabbitmq
spring-boot-starter-aop
提供切面程式設計特性,包含 spring-aop 和 aspectj 依賴
spring-boot-starter-batch
快速整合 spring batch 批處理框架,包括操作 hsqldb 資料庫
spring-boot-starter-cache
support for spring』s cache abstraction.
spring-boot-starter-data-elasticsearch
spring boot 快速整合 elasticsearch 查詢分析引擎
spring-boot-starter-data-jpa
spring boot 快速整合 jpa 運算元據庫
spring-boot-starter-data-mongodb
spring boot 快速整合 mongodb 非關係型資料庫
spring-boot-starter-data-rest
spring boot 暴露資料庫查詢端點為 rest 服務
spring-boot-starter-data-solr
spring boot 快速整合 solr 實現全文索引
spring-boot-starter-freemarker
提供 freemarker 模板引擎
spring-boot-starter-groovy-templates
提供 groovy 模板引擎
spring-boot-starter-integration
提供通用的整合 spring-integration 模組
spring-boot-starter-jdbc
快速整合 jdbc 運算元據庫
spring-boot-starter-jersey
提供 jersey 提供 restful 服務
spring-boot-starter-jta-atomikos
整合 jta atomikos 實現分布式事務
spring-boot-starter-jta-bitronix
整合 jta bitronix 實現分布式事務
spring-boot-starter-mail
快速郵件整合
spring-boot-starter-mustache
提供 mustache 模板引擎
spring-boot-starter-redis
spring boot 快速整合 redis
spring-boot-starter-security
support for spring-security.
spring-boot-starter-social-facebook
support for spring-social-facebook.
spring-boot-starter-social-linkedin
support for spring-social-linkedin.
spring-boot-starter-social-twitter
support for spring-social-twitter.
spring-boot-starter-test
提供通用單元測試依賴,包括 junit, hamcrest , mockito
spring-boot-starter-thymeleaf
提供 thymeleaf 模板引擎,包括 thymeleaf 的自動裝配等
spring-boot-starter-velocity
提供 velocity 模板引擎
spring-boot-starter-web
提供全棧的 web 開發特性,包括 spring mvc 依賴和 tomcat 容器
spring-boot-starter-websocket
spring boot 整合 websocket 功能
spring-boot-starter-ws
spring boot 整合 webservice 功能
Python datetime包函式簡單介紹
一 datetime包 上接 7內容 1.函式 datetime 1 用法 輸入乙個日期,來返回乙個datetime類 2 格式 datetime.datetime 年,月,日,hour minute second 其中hour,minute,second可選 3 附加類方法 today 返回本地當...
Ubuntu 第三天 安裝Ubuntu懶人包
搜尋ubuntu資料的時候看到了這個,看看介紹 副檔名是 tar.gz 於是右鍵,解壓 解壓完成後,直接雙擊解壓出來的檔案,彈出乙個視窗 當然選 是 了,接下來就是執行介面了 我很納悶,為什麼這個不用安裝?那個 小黑框 是傳說中的 終端 嗎?不知道哎 就等它慢慢的執行吧。ps 我網速很慢,只讓它安裝...
懶人的福利 教你用set維護斜率優化凸包
斜率優化題目大家肯定都做得不少了,有一些題目查詢插入點的x座標和查詢斜率都不單調,這樣就需要維護動態凸包並二分斜率。例如bzoj1492 常規的做法是cdq分治或手寫平衡樹維護凸包,然而如果我不願意寫分治,也懶得打平衡樹,怎麼辦呢?沒關係,今天我告訴你怎麼用乙個set維護這種凸包。首先orzlh,沒...