首页 > 其他分享 >SpringBoot参考手册

SpringBoot参考手册

时间:2022-11-07 23:14:49浏览次数:158  
标签:Web 参考手册 SpringBoot Spring Boot CLI configuration more

目录

The reference documentation consists of the following sections:

Legal

Legal information.

Getting Help

Resources for getting help.

Documentation Overview

About the Documentation, First Steps, and more.

Getting Started

Introducing Spring Boot, System Requirements, Servlet Containers, Installing Spring Boot, and Developing Your First Spring Boot Application

Upgrading Spring Boot Applications

Upgrading from 1.x, Upgrading to a new feature release, and Upgrading the Spring Boot CLI.

Using Spring Boot

Build Systems, Structuring Your Code, Configuration, Spring Beans and Dependency Injection, DevTools, and more.

Core Features

Profiles, Logging, Security, Caching, Spring Integration, Testing, and more.

Web

Servlet Web, Reactive Web, GraphQL, Embedded Container Support, Graceful Shutdown, and more.

Data

SQL and NOSQL data access.

IO

Caching, Quartz Scheduler, REST clients, Sending email, Spring Web Services, and more.

Messaging

JMS, AMQP, Apache Kafka, RSocket, WebSocket, and Spring Integration.

Container Images

Efficient container images and Building container images with Dockerfiles and Cloud Native Buildpacks.

Production-ready Features

Monitoring, Metrics, Auditing, and more.

Deploying Spring Boot Applications

Deploying to the Cloud, and Installing as a Unix application.

Spring Boot CLI

Installing the CLI, Using the CLI, Configuring the CLI, and more.

Build Tool Plugins

Maven Plugin, Gradle Plugin, Antlib, and more.

“How-to” Guides

Application Development, Configuration, Embedded Servers, Data Access, and many more.

The reference documentation has the following appendices:

Application Properties

Common application properties that you can use to configure your application.

Configuration Metadata

Metadata that you can use to describe configuration properties.

Auto-configuration Classes

Auto-configuration classes provided by Spring Boot.

Test Auto-configuration Annotations

Test auto-configuration annotations that you can use to test slices of your application.

Executable Jars

Spring Boot’s executable jars, their launchers, and their format.

Dependency Versions

Details of the dependencies that are managed by Spring Boot.

标签:Web,参考手册,SpringBoot,Spring,Boot,CLI,configuration,more
From: https://www.cnblogs.com/javalouvre/p/16867777.html

相关文章

  • SpringBoot IO
    目录1、Caching1.1、SupportedCacheProviders2、Hazelcast3、QuartzScheduler4、SendingEmail5、Validation5.1、验证手机号是否有效示例5.1.1、定义验证注解类5.1.2、......
  • springboot多环境配置
    springboot整合多个环境配置springboot默认读取配置文件名称application,且多个环境配置文件必须按照如下命名Application-dev.yml开发环境application-test.yml......
  • springboot整合nacos config详解
    springboot整合nacos详解@value:读取application文件@ConfigurationProperties:读取指定文件@PropertySource:自定义文件引入@PropertySource+@Value:读取自定义文件@Pro......
  • springboot整合多个环境配置
    springboot整合多个环境配置​ springboot默认读取配置文件名称application,且多个环境配置文件必须按照如下命名Application-dev.yml 开发环境application-test.y......
  • springboot 上传文件设置文件大小限制
     报错内容:org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded; nested exception is java.lang.IllegalStateExce......
  • Springboot中使用GSON报错 An attempt was made to call the method com.google.gso
    错误如下: Description:Anattemptwasmadetocallthemethodcom.google.gson.GsonBuilder.setLenient()Lcom/google/gson/GsonBuilder;butitdoesnotexist.Itscl......
  • Springboot 整合 SpringCloud组件-Eureka 微服务 EurekaClient(二)
    我们已经完成了Eureka注册中心Server的搭建与部署,那么这篇,我们就来创建一个微服务EurekaClient,将其成功注册到我们的注册中心去。 同样,创建一个springboot项目,起名clien......
  • Springboot 整合 SpringCloud组件-Gateway 网关服务 (四)
    这篇我将介绍的是网关服务,那么从标题已经知道我们整合的组件时gateway;也许有人说,为啥不用zuul,这个组件也可以用于做网关。至于这两组件的性能比较与区别,我们来看一个表格简......
  • (Redis使用系列) Springboot 实现Redis消息的订阅与分布 四
    (建议初学者把这个系列前面的都看看,那对于redis的基本使用操作及一些消息的订阅分布都是没问题的了)Redis,一个缓存数据库。不仅仅是能用于对数据的CRUD,也可以作为一个消息中间......
  • Springboot 用session监听器统计在线用户数量
    今天给大家分享这个吧。利用Springboot中的session监听器去实现统计在线用户数量的需求(当然其实用shiro或者security是框架自己带有会话管理的,用起来更加方便)。但是,接下来......