spring boot application.properties 配置详解

本贴最后更新于 1980 天前,其中的信息可能已经沧海桑田
  1. # ===================================================================  
  2. # COMMON SPRING BOOT PROPERTIES  
  3. #  
  4. # This sample file is provided as a guideline. Do NOT copy it in its  
  5. # entirety to your own application.               ^^^  
  6. # ===================================================================  
  7.   
  8. # ----------------------------------------  
  9. # CORE PROPERTIES  
  10. # ----------------------------------------  
  11.   
  12. # SPRING CONFIG (ConfigFileApplicationListener)  
  13. spring.config.name= # config file name (default to 'application')  
  14. spring.config.location= # location of config file  
  15.   
  16. # PROFILES  
  17. spring.profiles= # comma list of active profiles  
  18.   
  19. # APPLICATION SETTINGS (SpringApplication)  
  20. spring.main.sources=  
  21. spring.main.web-environment= # detect by default  
  22. spring.main.show-banner=true  
  23. spring.main....= # see class for all properties  
  24.   
  25. # LOGGING  
  26. logging.path=/var/logs  
  27. logging.file=myapp.log  
  28. logging.config=  
  29.   
  30. # IDENTITY (ContextIdApplicationContextInitializer)  
  31. spring.application.name=  
  32. spring.application.index=  
  33.   
  34. # EMBEDDED SERVER CONFIGURATION (ServerProperties)  
  35. server.port=8080  
  36. server.address= # bind to a specific NIC  
  37. server.session-timeout= # session timeout in seconds  
  38. server.context-path= # the context path, defaults to '/'  
  39. server.servlet-path= # the servlet path, defaults to '/'  
  40. server.tomcat.access-log-pattern= # log pattern of the access log  
  41. server.tomcat.access-log-enabled=false # is access logging enabled  
  42. server.tomcat.protocol-header=x-forwarded-proto # ssl forward headers  
  43. server.tomcat.remote-ip-header=x-forwarded-for  
  44. server.tomcat.basedir=/tmp # base dir (usually not needed, defaults to tmp)  
  45. server.tomcat.background-processor-delay=30; # in seconds  
  46. server.tomcat.max-threads = 0 # number of threads in protocol handler  
  47. server.tomcat.uri-encoding = UTF-8 # character encoding to use for URL decoding  
  48.   
  49. # SPRING MVC (HttpMapperProperties)  
  50. http.mappers.json-pretty-print=false # pretty print JSON  
  51. http.mappers.json-sort-keys=false # sort keys  
  52. spring.mvc.locale= # set fixed locale, e.g. en_UK  
  53. spring.mvc.date-format= # set fixed date format, e.g. dd/MM/yyyy  
  54. spring.mvc.message-codes-resolver-format= # PREFIX_ERROR_CODE / POSTFIX_ERROR_CODE  
  55. spring.view.prefix= # MVC view prefix  
  56. spring.view.suffix= # ... and suffix  
  57. spring.resources.cache-period= # cache timeouts in headers sent to browser  
  58. spring.resources.add-mappings=true # if default mappings should be added  
  59.   
  60. # THYMELEAF (ThymeleafAutoConfiguration)  
  61. spring.thymeleaf.prefix=classpath:/templates/  
  62. spring.thymeleaf.suffix=.html  
  63. spring.thymeleaf.mode=HTML5  
  64. spring.thymeleaf.encoding=UTF-8  
  65. spring.thymeleaf.content-type=text/html # ;charset= is added  
  66. spring.thymeleaf.cache=true # set to false for hot refresh  
  67.   
  68. # FREEMARKER (FreeMarkerAutoConfiguration)  
  69. spring.freemarker.allowRequestOverride=false  
  70. spring.freemarker.allowSessionOverride=false  
  71. spring.freemarker.cache=true  
  72. spring.freemarker.checkTemplateLocation=true  
  73. spring.freemarker.contentType=text/html  
  74. spring.freemarker.exposeRequestAttributes=false  
  75. spring.freemarker.exposeSessionAttributes=false  
  76. spring.freemarker.exposeSpringMacroHelpers=false  
  77. spring.freemarker.prefix=  
  78. spring.freemarker.requestContextAttribute=  
  79. spring.freemarker.settings.*=  
  80. spring.freemarker.suffix=.ftl  
  81. spring.freemarker.templateEncoding=UTF-8  
  82. spring.freemarker.templateLoaderPath=classpath:/templates/  
  83. spring.freemarker.viewNames= # whitelist of view names that can be resolved  
  84.   
  85. # GROOVY TEMPLATES (GroovyTemplateAutoConfiguration)  
  86. spring.groovy.template.allowRequestOverride=false  
  87. spring.groovy.template.allowSessionOverride=false  
  88. spring.groovy.template.cache=true  
  89. spring.groovy.template.configuration.*= # See Groovy's TemplateConfiguration  
  90. spring.groovy.template.contentType=text/html  
  91. spring.groovy.template.prefix=classpath:/templates/  
  92. spring.groovy.template.suffix=.tpl  
  93. spring.groovy.template.templateEncoding=UTF-8  
  94. spring.groovy.template.viewNames= # whitelist of view names that can be resolved  
  95.   
  96. # VELOCITY TEMPLATES (VelocityAutoConfiguration)  
  97. spring.velocity.allowRequestOverride=false  
  98. spring.velocity.allowSessionOverride=false  
  99. spring.velocity.cache=true  
  100. spring.velocity.checkTemplateLocation=true  
  101. spring.velocity.contentType=text/html  
  102. spring.velocity.dateToolAttribute=  
  103. spring.velocity.exposeRequestAttributes=false  
  104. spring.velocity.exposeSessionAttributes=false  
  105. spring.velocity.exposeSpringMacroHelpers=false  
  106. spring.velocity.numberToolAttribute=  
  107. spring.velocity.prefix=  
  108. spring.velocity.properties.*=  
  109. spring.velocity.requestContextAttribute=  
  110. spring.velocity.resourceLoaderPath=classpath:/templates/  
  111. spring.velocity.suffix=.vm  
  112. spring.velocity.templateEncoding=UTF-8  
  113. spring.velocity.viewNames= # whitelist of view names that can be resolved  
  114.   
  115. # INTERNATIONALIZATION (MessageSourceAutoConfiguration)  
  116. spring.messages.basename=messages  
  117. spring.messages.cacheSeconds=-1  
  118. spring.messages.encoding=UTF-8  
  119.   
  120.   
  121. # SECURITY (SecurityProperties)  
  122. security.user.name=user # login username  
  123. security.user.password= # login password  
  124. security.user.role=USER # role assigned to the user  
  125. security.require-ssl=false # advanced settings ...  
  126. security.enable-csrf=false  
  127. security.basic.enabled=true  
  128. security.basic.realm=Spring  
  129. security.basic.path= # /**  
  130. security.headers.xss=false  
  131. security.headers.cache=false  
  132. security.headers.frame=false  
  133. security.headers.contentType=false  
  134. security.headers.hsts=all # none / domain / all  
  135. security.sessions=stateless # always / never / if_required / stateless  
  136. security.ignored=false  
  137.   
  138. # DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)  
  139. spring.datasource.name= # name of the data source  
  140. spring.datasource.initialize=true # populate using data.sql  
  141. spring.datasource.schema= # a schema (DDL) script resource reference  
  142. spring.datasource.data= # a data (DML) script resource reference  
  143. spring.datasource.platform= # the platform to use in the schema resource (schema-${platform}.sql)  
  144. spring.datasource.continueOnError=false # continue even if can't be initialized  
  145. spring.datasource.separator=; # statement separator in SQL initialization scripts  
  146. spring.datasource.driverClassName= # JDBC Settings...  
  147. spring.datasource.url=  
  148. spring.datasource.username=  
  149. spring.datasource.password=  
  150. spring.datasource.max-active=100 # Advanced configuration...  
  151. spring.datasource.max-idle=8  
  152. spring.datasource.min-idle=8  
  153. spring.datasource.initial-size=10  
  154. spring.datasource.validation-query=  
  155. spring.datasource.test-on-borrow=false  
  156. spring.datasource.test-on-return=false  
  157. spring.datasource.test-while-idle=  
  158. spring.datasource.time-between-eviction-runs-millis=  
  159. spring.datasource.min-evictable-idle-time-millis=  
  160. spring.datasource.max-wait-millis=  
  161.   
  162. # MONGODB (MongoProperties)  
  163. spring.data.mongodb.host= # the db host  
  164. spring.data.mongodb.port=27017 # the connection port (defaults to 27107)  
  165. spring.data.mongodb.uri=mongodb://localhost/test # connection URL  
  166. spring.data.mongo.repositories.enabled=true # if spring data repository support is enabled  
  167.   
  168. # JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)  
  169. spring.jpa.properties.*= # properties to set on the JPA connection  
  170. spring.jpa.openInView=true  
  171. spring.jpa.show-sql=true  
  172. spring.jpa.database-platform=  
  173. spring.jpa.database=  
  174. spring.jpa.generate-ddl=false # ignored by Hibernate, might be useful for other vendors  
  175. spring.jpa.hibernate.naming-strategy= # naming classname  
  176. spring.jpa.hibernate.ddl-auto= # defaults to create-drop for embedded dbs  
  177. spring.data.jpa.repositories.enabled=true # if spring data repository support is enabled  
  178.   
  179. # SOLR (SolrProperties})  
  180. spring.data.solr.host=http://127.0.0.1:8983/solr  
  181. spring.data.solr.zkHost=  
  182. spring.data.solr.repositories.enabled=true # if spring data repository support is enabled  
  183.   
  184. # ELASTICSEARCH (ElasticsearchProperties})  
  185. spring.data.elasticsearch.cluster-name= # The cluster name (defaults to elasticsearch)  
  186. spring.data.elasticsearch.cluster-nodes= # The address(es) of the server node (comma-separated; if not specified starts a client node)  
  187. spring.data.elasticsearch.local=true # if local mode should be used with client nodes  
  188. spring.data.elasticsearch.repositories.enabled=true # if spring data repository support is enabled  
  189.   
  190.   
  191.   
  192. # FLYWAY (FlywayProperties)  
  193. flyway.locations=classpath:db/migrations # locations of migrations scripts  
  194. flyway.schemas= # schemas to update  
  195. flyway.initVersion= 1 # version to start migration  
  196. flyway.prefix=V  
  197. flyway.suffix=.sql  
  198. flyway.enabled=true  
  199. flyway.url= # JDBC url if you want Flyway to create its own DataSource  
  200. flyway.user= # JDBC username if you want Flyway to create its own DataSource  
  201. flyway.password= # JDBC password if you want Flyway to create its own DataSource  
  202.   
  203. # LIQUIBASE (LiquibaseProperties)  
  204. liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml  
  205. liquibase.contexts= # runtime contexts to use  
  206. liquibase.default-schema= # default database schema to use  
  207. liquibase.drop-first=false  
  208. liquibase.enabled=true  
  209.   
  210. # JMX  
  211. spring.jmx.enabled=true # Expose MBeans from Spring  
  212.   
  213. # RABBIT (RabbitProperties)  
  214. spring.rabbitmq.host= # connection host  
  215. spring.rabbitmq.port= # connection port  
  216. spring.rabbitmq.addresses= # connection addresses (e.g. myhost:9999,otherhost:1111)  
  217. spring.rabbitmq.username= # login user  
  218. spring.rabbitmq.password= # login password  
  219. spring.rabbitmq.virtualhost=  
  220. spring.rabbitmq.dynamic=  
  221.   
  222. # REDIS (RedisProperties)  
  223. spring.redis.host=localhost # server host  
  224. spring.redis.password= # server password  
  225. spring.redis.port=6379 # connection port  
  226. spring.redis.pool.max-idle=8 # pool settings ...  
  227. spring.redis.pool.min-idle=0  
  228. spring.redis.pool.max-active=8  
  229. spring.redis.pool.max-wait=-1  
  230.   
  231. # ACTIVEMQ (ActiveMQProperties)  
  232. spring.activemq.broker-url=tcp://localhost:61616 # connection URL  
  233. spring.activemq.user=  
  234. spring.activemq.password=  
  235. spring.activemq.in-memory=true # broker kind to create if no broker-url is specified  
  236. spring.activemq.pooled=false  
  237.   
  238. # HornetQ (HornetQProperties)  
  239. spring.hornetq.mode= # connection mode (native, embedded)  
  240. spring.hornetq.host=localhost # hornetQ host (native mode)  
  241. spring.hornetq.port=5445 # hornetQ port (native mode)  
  242. spring.hornetq.embedded.enabled=true # if the embedded server is enabled (needs hornetq-jms-server.jar)  
  243. spring.hornetq.embedded.serverId= # auto-generated id of the embedded server (integer)  
  244. spring.hornetq.embedded.persistent=false # message persistence  
  245. spring.hornetq.embedded.data-directory= # location of data content (when persistence is enabled)  
  246. spring.hornetq.embedded.queues= # comma separate queues to create on startup  
  247. spring.hornetq.embedded.topics= # comma separate topics to create on startup  
  248. spring.hornetq.embedded.cluster-password= # customer password (randomly generated by default)  
  249.   
  250. # JMS (JmsProperties)  
  251. spring.jms.pub-sub-domain= # false for queue (default), true for topic  
  252.   
  253. # SPRING BATCH (BatchDatabaseInitializer)  
  254. spring.batch.job.names=job1,job2  
  255. spring.batch.job.enabled=true  
  256. spring.batch.initializer.enabled=true  
  257. spring.batch.schema= # batch schema to load  
  258.   
  259. # AOP  
  260. spring.aop.auto=  
  261. spring.aop.proxy-target-class=  
  262.   
  263. # FILE ENCODING (FileEncodingApplicationListener)  
  264. spring.mandatory-file-encoding=false  
  265.   
  266. # SPRING SOCIAL (SocialWebAutoConfiguration)  
  267. spring.social.auto-connection-views=true # Set to true for default connection views or false if you provide your own  
  268.   
  269. # SPRING SOCIAL FACEBOOK (FacebookAutoConfiguration)  
  270. spring.social.facebook.app-id= # your application's Facebook App ID  
  271. spring.social.facebook.app-secret= # your application's Facebook App Secret  
  272.   
  273. # SPRING SOCIAL LINKEDIN (LinkedInAutoConfiguration)  
  274. spring.social.linkedin.app-id= # your application's LinkedIn App ID  
  275. spring.social.linkedin.app-secret= # your application's LinkedIn App Secret  
  276.   
  277. # SPRING SOCIAL TWITTER (TwitterAutoConfiguration)  
  278. spring.social.twitter.app-id= # your application's Twitter App ID  
  279. spring.social.twitter.app-secret= # your application's Twitter App Secret  
  280.   
  281. # SPRING MOBILE SITE PREFERENCE (SitePreferenceAutoConfiguration)  
  282. spring.mobile.sitepreference.enabled=true # enabled by default  
  283.   
  284. # SPRING MOBILE DEVICE VIEWS (DeviceDelegatingViewResolverAutoConfiguration)  
  285. spring.mobile.devicedelegatingviewresolver.enabled=true # disabled by default  
  286. spring.mobile.devicedelegatingviewresolver.normalPrefix=  
  287. spring.mobile.devicedelegatingviewresolver.normalSuffix=  
  288. spring.mobile.devicedelegatingviewresolver.mobilePrefix=mobile/  
  289. spring.mobile.devicedelegatingviewresolver.mobileSuffix=  
  290. spring.mobile.devicedelegatingviewresolver.tabletPrefix=tablet/  
  291. spring.mobile.devicedelegatingviewresolver.tabletSuffix=  
  292.   
  293. # ----------------------------------------  
  294. # ACTUATOR PROPERTIES  
  295. # ----------------------------------------  
  296.   
  297. # MANAGEMENT HTTP SERVER (ManagementServerProperties)  
  298. management.port= # defaults to 'server.port'  
  299. management.address= # bind to a specific NIC  
  300. management.contextPath= # default to '/'  
  301.   
  302. # ENDPOINTS (AbstractEndpoint subclasses)  
  303. endpoints.autoconfig.id=autoconfig  
  304. endpoints.autoconfig.sensitive=true  
  305. endpoints.autoconfig.enabled=true  
  306. endpoints.beans.id=beans  
  307. endpoints.beans.sensitive=true  
  308. endpoints.beans.enabled=true  
  309. endpoints.configprops.id=configprops  
  310. endpoints.configprops.sensitive=true  
  311. endpoints.configprops.enabled=true  
  312. endpoints.configprops.keys-to-sanitize=password,secret  
  313. endpoints.dump.id=dump  
  314. endpoints.dump.sensitive=true  
  315. endpoints.dump.enabled=true  
  316. endpoints.env.id=env  
  317. endpoints.env.sensitive=true  
  318. endpoints.env.enabled=true  
  319. endpoints.health.id=health  
  320. endpoints.health.sensitive=false  
  321. endpoints.health.enabled=true  
  322. endpoints.info.id=info  
  323. endpoints.info.sensitive=false  
  324. endpoints.info.enabled=true  
  325. endpoints.metrics.id=metrics  
  326. endpoints.metrics.sensitive=true  
  327. endpoints.metrics.enabled=true  
  328. endpoints.shutdown.id=shutdown  
  329. endpoints.shutdown.sensitive=true  
  330. endpoints.shutdown.enabled=false  
  331. endpoints.trace.id=trace  
  332. endpoints.trace.sensitive=true  
  333. endpoints.trace.enabled=true  
  334.   
  335. # MVC ONLY ENDPOINTS  
  336. endpoints.jolokia.path=jolokia  
  337. endpoints.jolokia.sensitive=true  
  338. endpoints.jolokia.enabled=true # when using Jolokia  
  339. endpoints.error.path=/error  
  340.   
  341. # JMX ENDPOINT (EndpointMBeanExportProperties)  
  342. endpoints.jmx.enabled=true  
  343. endpoints.jmx.domain= # the JMX domain, defaults to 'org.springboot'  
  344. endpoints.jmx.unique-names=false  
  345. endpoints.jmx.enabled=true  
  346. endpoints.jmx.staticNames=  
  347.   
  348. # JOLOKIA (JolokiaProperties)  
  349. jolokia.config.*= # See Jolokia manual  
  350.   
  351. # REMOTE SHELL  
  352. shell.auth=simple # jaas, key, simple, spring  
  353. shell.command-refresh-interval=-1  
  354. shell.command-path-pattern= # classpath*:/commands/**, classpath*:/crash/commands/**  
  355. shell.config-path-patterns= # classpath*:/crash/*  
  356. shell.disabled-plugins=false # don't expose plugins  
  357. shell.ssh.enabled= # ssh settings ...  
  358. shell.ssh.keyPath=  
  359. shell.ssh.port=  
  360. shell.telnet.enabled= # telnet settings ...  
  361. shell.telnet.port=  
  362. shell.auth.jaas.domain= # authentication settings ...  
  363. shell.auth.key.path=  
  364. shell.auth.simple.user.name=  
  365. shell.auth.simple.user.password=  
  366. shell.auth.spring.roles=  
  367.   
  368. # GIT INFO  
  369. spring.git.properties= # resource ref to generated git info properties file  

# SPRING CONFIG (ConfigFileApplicationListener)
  • Spring

    Spring 是一个开源框架,是于 2003 年兴起的一个轻量级的 Java 开发框架,由 Rod Johnson 在其著作《Expert One-On-One J2EE Development and Design》中阐述的部分理念和原型衍生而来。它是为了解决企业应用开发的复杂性而创建的。框架的主要优势之一就是其分层架构,分层架构允许使用者选择使用哪一个组件,同时为 JavaEE 应用程序开发提供集成的框架。

    941 引用 • 1458 回帖 • 151 关注
  • 配置
    15 引用 • 159 回帖

相关帖子

欢迎来到这里!

我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。

注册 关于
请输入回帖内容 ...
  • xjtushilei

    官网有呀。

  • alanfans

    这格式没法看

  • eddy

    我喜欢用 yaml

  • kingschan

    ... ... 我表示是从邮件推荐过来的,然后这格式真的没法看 >_> 优选

推荐标签 标签

  • SendCloud

    SendCloud 由搜狐武汉研发中心孵化的项目,是致力于为开发者提供高质量的触发邮件服务的云端邮件发送平台,为开发者提供便利的 API 接口来调用服务,让邮件准确迅速到达用户收件箱并获得强大的追踪数据。

    2 引用 • 8 回帖 • 440 关注
  • V2EX

    V2EX 是创意工作者们的社区。这里目前汇聚了超过 400,000 名主要来自互联网行业、游戏行业和媒体行业的创意工作者。V2EX 希望能够成为创意工作者们的生活和事业的一部分。

    17 引用 • 236 回帖 • 418 关注
  • 笔记

    好记性不如烂笔头。

    304 引用 • 777 回帖
  • 周末

    星期六到星期天晚,实行五天工作制后,指每周的最后两天。再过几年可能就是三天了。

    14 引用 • 297 回帖
  • Swagger

    Swagger 是一款非常流行的 API 开发工具,它遵循 OpenAPI Specification(这是一种通用的、和编程语言无关的 API 描述规范)。Swagger 贯穿整个 API 生命周期,如 API 的设计、编写文档、测试和部署。

    26 引用 • 35 回帖 • 13 关注
  • QQ

    1999 年 2 月腾讯正式推出“腾讯 QQ”,在线用户由 1999 年的 2 人(马化腾和张志东)到现在已经发展到上亿用户了,在线人数超过一亿,是目前使用最广泛的聊天软件之一。

    45 引用 • 557 回帖 • 221 关注
  • TextBundle

    TextBundle 文件格式旨在应用程序之间交换 Markdown 或 Fountain 之类的纯文本文件时,提供更无缝的用户体验。

    1 引用 • 2 回帖 • 48 关注
  • Redis

    Redis 是一个开源的使用 ANSI C 语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value 数据库,并提供多种语言的 API。从 2010 年 3 月 15 日起,Redis 的开发工作由 VMware 主持。从 2013 年 5 月开始,Redis 的开发由 Pivotal 赞助。

    284 引用 • 247 回帖 • 175 关注
  • 安全

    安全永远都不是一个小问题。

    189 引用 • 813 回帖 • 1 关注
  • 互联网

    互联网(Internet),又称网际网络,或音译因特网、英特网。互联网始于 1969 年美国的阿帕网,是网络与网络之间所串连成的庞大网络,这些网络以一组通用的协议相连,形成逻辑上的单一巨大国际网络。

    96 引用 • 330 回帖
  • 思源笔记

    思源笔记是一款隐私优先的个人知识管理系统,支持完全离线使用,同时也支持端到端加密同步。

    融合块、大纲和双向链接,重构你的思维。

    18722 引用 • 69932 回帖
  • JVM

    JVM(Java Virtual Machine)Java 虚拟机是一个微型操作系统,有自己的硬件构架体系,还有相应的指令系统。能够识别 Java 独特的 .class 文件(字节码),能够将这些文件中的信息读取出来,使得 Java 程序只需要生成 Java 虚拟机上的字节码后就能在不同操作系统平台上进行运行。

    180 引用 • 120 回帖 • 1 关注
  • 设计模式

    设计模式(Design pattern)代表了最佳的实践,通常被有经验的面向对象的软件开发人员所采用。设计模式是软件开发人员在软件开发过程中面临的一般问题的解决方案。这些解决方案是众多软件开发人员经过相当长的一段时间的试验和错误总结出来的。

    198 引用 • 120 回帖
  • Electron

    Electron 基于 Chromium 和 Node.js,让你可以使用 HTML、CSS 和 JavaScript 构建应用。它是一个由 GitHub 及众多贡献者组成的活跃社区共同维护的开源项目,兼容 Mac、Windows 和 Linux,它构建的应用可在这三个操作系统上面运行。

    15 引用 • 136 回帖 • 6 关注
  • App

    App(应用程序,Application 的缩写)一般指手机软件。

    90 引用 • 383 回帖 • 1 关注
  • Rust

    Rust 是一门赋予每个人构建可靠且高效软件能力的语言。Rust 由 Mozilla 开发,最早发布于 2014 年 9 月。

    57 引用 • 22 回帖 • 5 关注
  • Lute

    Lute 是一款结构化的 Markdown 引擎,支持 Go 和 JavaScript。

    25 引用 • 191 回帖 • 21 关注
  • WebComponents

    Web Components 是 W3C 定义的标准,它给了前端开发者扩展浏览器标签的能力,可以方便地定制可复用组件,更好的进行模块化开发,解放了前端开发者的生产力。

    1 引用 • 25 关注
  • Laravel

    Laravel 是一套简洁、优雅的 PHP Web 开发框架。它采用 MVC 设计,是一款崇尚开发效率的全栈框架。

    19 引用 • 23 回帖 • 686 关注
  • CloudFoundry

    Cloud Foundry 是 VMware 推出的业界第一个开源 PaaS 云平台,它支持多种框架、语言、运行时环境、云平台及应用服务,使开发人员能够在几秒钟内进行应用程序的部署和扩展,无需担心任何基础架构的问题。

    5 引用 • 18 回帖 • 153 关注
  • MongoDB

    MongoDB(来自于英文单词“Humongous”,中文含义为“庞大”)是一个基于分布式文件存储的数据库,由 C++ 语言编写。旨在为应用提供可扩展的高性能数据存储解决方案。MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。它支持的数据结构非常松散,是类似 JSON 的 BSON 格式,因此可以存储比较复杂的数据类型。

    90 引用 • 59 回帖
  • Vue.js

    Vue.js(读音 /vju ː/,类似于 view)是一个构建数据驱动的 Web 界面库。Vue.js 的目标是通过尽可能简单的 API 实现响应的数据绑定和组合的视图组件。

    261 引用 • 662 回帖
  • WiFiDog

    WiFiDog 是一套开源的无线热点认证管理工具,主要功能包括:位置相关的内容递送;用户认证和授权;集中式网络监控。

    1 引用 • 7 回帖 • 545 关注
  • Swift

    Swift 是苹果于 2014 年 WWDC(苹果开发者大会)发布的开发语言,可与 Objective-C 共同运行于 Mac OS 和 iOS 平台,用于搭建基于苹果平台的应用程序。

    34 引用 • 37 回帖 • 499 关注
  • SQLite

    SQLite 是一个进程内的库,实现了自给自足的、无服务器的、零配置的、事务性的 SQL 数据库引擎。SQLite 是全世界使用最为广泛的数据库引擎。

    4 引用 • 7 回帖 • 2 关注
  • DevOps

    DevOps(Development 和 Operations 的组合词)是一组过程、方法与系统的统称,用于促进开发(应用程序/软件工程)、技术运营和质量保障(QA)部门之间的沟通、协作与整合。

    40 引用 • 24 回帖
  • 正则表达式

    正则表达式(Regular Expression)使用单个字符串来描述、匹配一系列遵循某个句法规则的字符串。

    31 引用 • 94 回帖