大多数应用程序在某些时候需要处理输入和输出问题。Spring Boot 提供实用程序和与一系列技术的集成,以在您需要 IO 功能时提供帮助。本节涵盖标准 IO 功能(例如缓存和验证)以及更高级的主题(例如调度和分布式事务)。我们还将介绍调用远程 REST 或 SOAP 服务以及发送电子邮件。

1.缓存

Spring 框架支持透明地向应用程序添加缓存。在其核心,抽象将缓存应用于方法,从而根据缓存中可用的信息减少执行次数。缓存逻辑是透明应用的,对调用者没有任何干扰。只要使用@EnableCaching注解启用缓存支持,Spring Boot 就会自动配置缓存基础结构。

有关更多详细信息,请查看 Spring Framework 参考的相关部分

简而言之,要将缓存添加到服务的操作,请将相关注释添加到其方法中,如以下示例所示:

java
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Component;

@Component
public class MyMathService {

    @Cacheable("piDecimals")
    public int computePiDecimal(int precision) {
        ...
    }

}
科特林
import org.springframework.cache.annotation.Cacheable
import org.springframework.stereotype.Component

@Component
class MyMathService {

    @Cacheable("piDecimals")
    fun computePiDecimal(precision: Int): Int {
        ...
    }

}

此示例演示了在可能代价高昂的操作中使用缓存。在调用 之前computePiDecimal,抽象会在piDecimals缓存中查找与i参数匹配的条目。如果找到条目,缓存中的内容会立即返回给调用者,并且不会调用该方法。否则,调用该方法,并在返回值之前更新缓存。

@CacheResult您还可以透明地 使用标准 JSR-107 (JCache) 注释(例如)。但是,我们强烈建议您不要混合和匹配 Spring Cache 和 JCache 注释。

如果不添加任何特定的缓存库,Spring Boot 会自动配置一个简单的提供程序,该提供程序在内存中使用并发映射。当需要缓存时(例如piDecimals在前面的示例中),此提供程序会为您创建它。不建议将简单提供程序用于生产用途,但它非常适合入门并确保您了解这些功能。当您决定使用缓存提供程序时,请务必阅读其文档以了解如何配置应用程序使用的缓存。几乎所有提供程序都要求您显式配置您在应用程序中使用的每个缓存。有些提供了一种自定义属性定义的默认缓存的方法spring.cache.cache-names

也可以透明地从缓存中 更新驱逐数据。

1.1。支持的缓存提供程序

缓存抽象不提供实际的存储,它依赖于org.springframework.cache.Cacheorg.springframework.cache.CacheManager接口实现的抽象。

如果您尚未定义类型CacheManagerCacheResolver命名的 bean cacheResolver(请参阅 参考资料CachingConfigurer),Spring Boot 会尝试检测以下提供者(按指示的顺序):

也可以通过设置属性来强制使用特定的缓存提供者。spring.cache.type如果您需要在某些环境(例如测试)中 完全禁用缓存,请使用此属性。
使用spring-boot-starter-cache“Starter”快速添加基本的缓存依赖项。首发带进来spring-context-support。如果您手动添加依赖项,则必须包括spring-context-support才能使用 JCache、EhCache 2.x 或 Caffeine 支持。

如果CacheManager是由 Spring Boot 自动配置的,您可以在完全初始化之前通过公开实现CacheManagerCustomizer接口的 bean 进一步调整其配置。以下示例设置一个标志,表示null不应将值传递给底层映射:

java
import org.springframework.boot.autoconfigure.cache.CacheManagerCustomizer;
import org.springframework.cache.concurrent.ConcurrentMapCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration(proxyBeanMethods = false)
public class MyCacheManagerConfiguration {

    @Bean
    public CacheManagerCustomizer<ConcurrentMapCacheManager> cacheManagerCustomizer() {
        return (cacheManager) -> cacheManager.setAllowNullValues(false);
    }

}
科特林
import org.springframework.boot.autoconfigure.cache.CacheManagerCustomizer
import org.springframework.cache.concurrent.ConcurrentMapCacheManager
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration

@Configuration(proxyBeanMethods = false)
class MyCacheManagerConfiguration {

    @Bean
    fun cacheManagerCustomizer(): CacheManagerCustomizer<ConcurrentMapCacheManager> {
        return CacheManagerCustomizer { cacheManager ->
            cacheManager.isAllowNullValues = false
        }
    }

}
在前面的示例中,需要自动配置ConcurrentMapCacheManager。如果不是这种情况(您提供了自己的配置或自动配置了不同的缓存提供程序),则根本不会调用定制器。您可以拥有任意数量的定制器,也可以使用@Order或来订购它们Ordered

1.1.1。通用的

如果上下文定义了至少一个org.springframework.cache.Cachebean ,则使用通用缓存。创建了一个CacheManager包装该类型的所有 bean。

1.1.2。JCache (JSR-107)

JCache通过类路径上的 a 来引导javax.cache.spi.CachingProvider(即,类路径上存在一个符合 JSR-107 的缓存库),并且JCacheCacheManagerspring-boot-starter-cache“Starter”提供。有各种兼容的库可用,Spring Boot 为 Ehcache 3、Hazelcast 和 Infinispan 提供了依赖管理。也可以添加任何其他兼容的库。

可能存在多个提供者,在这种情况下必须明确指定提供者。即使 JSR-107 标准没有强制使用标准化的方式来定义配置文件的位置,Spring Boot 也会尽最大努力适应使用实现细节设置缓存,如下面的示例所示:

特性
# Only necessary if more than one provider is present
spring.cache.jcache.provider=com.example.MyCachingProvider
spring.cache.jcache.config=classpath:example.xml
yaml
# Only necessary if more than one provider is present
spring:
  cache:
    jcache:
      provider: "com.example.MyCachingProvider"
      config: "classpath:example.xml"
当缓存库同时提供本机实现和 JSR-107 支持时,Spring Boot 更喜欢 JSR-107 支持,因此如果您切换到不同的 JSR-107 实现,则可以使用相同的功能。
Spring Boot对 Hazelcast 具有一般支持。如果有一个HazelcastInstance可用的,它也会自动重用CacheManager,除非spring.cache.jcache.config指定了属性。

有两种方法可以自定义底层javax.cache.cacheManager

  • 可以通过设置spring.cache.cache-names属性在启动时创建缓存。如果定义了自定义javax.cache.configuration.Configurationbean,则使用它来自定义它们。

  • org.springframework.boot.autoconfigure.cache.JCacheManagerCustomizerbean 是通过引用来调用的,以CacheManager实现完全定制。

如果定义了标准javax.cache.CacheManagerbean,它会自动包装在org.springframework.cache.CacheManager抽象期望的实现中。没有对其应用进一步的自定义。

1.1.3。EhCache 2.x

ehcache.xml如果可以在类路径的根目录找到名为的文件,则使用E​​hCache 2.x。如果找到 EhCache 2.x, “Starter”EhCacheCacheManager提供的spring-boot-starter-cache用于引导缓存管理器。也可以提供备用配置文件,如以下示例所示:

特性
spring.cache.ehcache.config=classpath:config/another-config.xml
yaml
spring:
  cache:
    ehcache:
      config: "classpath:config/another-config.xml"

1.1.4。榛树

Spring Boot对 Hazelcast 具有一般支持。如果 aHazelcastInstance已被自动配置,它会自动包装在 a 中CacheManager

1.1.5。英菲尼斯潘

Infinispan没有默认配置文件位置,因此必须明确指定。否则,将使用默认引导程序。

特性
spring.cache.infinispan.config=infinispan.xml
yaml
spring:
  cache:
    infinispan:
      config: "infinispan.xml"

可以通过设置spring.cache.cache-names属性在启动时创建缓存。如果定义了自定义ConfigurationBuilderbean,它将用于自定义缓存。

Spring Boot 中对 Infinispan 的支持仅限于嵌入式模式,相当基础。如果你想要更多的选择,你应该使用官方的 Infinispan Spring Boot starter。有关详细信息, 请参阅Infinispan 的文档。

1.1.6。沙发底座

如果 Spring Data Couchbase 可用并且 Couchbase 已配置,则 aCouchbaseCacheManager是自动配置的。可以通过设置spring.cache.cache-names属性在启动时创建额外的缓存,并且可以使用spring.cache.couchbase.*属性配置缓存默认值。例如,以下配置创建cache1cache2缓存条目过期时间为 10 分钟:

特性
spring.cache.cache-names=cache1,cache2
spring.cache.couchbase.expiration=10m
yaml
spring:
  cache:
    cache-names: "cache1,cache2"
    couchbase:
      expiration: "10m"

如果您需要对配置进行更多控制,请考虑注册一个CouchbaseCacheManagerBuilderCustomizerbean。cache1以下示例显示了一个为和配置特定条目过期的定制器cache2

java
import java.time.Duration;

import org.springframework.boot.autoconfigure.cache.CouchbaseCacheManagerBuilderCustomizer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.couchbase.cache.CouchbaseCacheConfiguration;

@Configuration(proxyBeanMethods = false)
public class MyCouchbaseCacheManagerConfiguration {

    @Bean
    public CouchbaseCacheManagerBuilderCustomizer myCouchbaseCacheManagerBuilderCustomizer() {
        return (builder) -> builder
                .withCacheConfiguration("cache1", CouchbaseCacheConfiguration
                        .defaultCacheConfig().entryExpiry(Duration.ofSeconds(10)))
                .withCacheConfiguration("cache2", CouchbaseCacheConfiguration
                        .defaultCacheConfig().entryExpiry(Duration.ofMinutes(1)));

    }

}
科特林
import org.springframework.boot.autoconfigure.cache.CouchbaseCacheManagerBuilderCustomizer
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.data.couchbase.cache.CouchbaseCacheConfiguration
import java.time.Duration

@Configuration(proxyBeanMethods = false)
class MyCouchbaseCacheManagerConfiguration {

    @Bean
    fun myCouchbaseCacheManagerBuilderCustomizer(): CouchbaseCacheManagerBuilderCustomizer {
        return CouchbaseCacheManagerBuilderCustomizer { builder ->
            builder
                .withCacheConfiguration(
                    "cache1", CouchbaseCacheConfiguration
                        .defaultCacheConfig().entryExpiry(Duration.ofSeconds(10))
                )
                .withCacheConfiguration(
                    "cache2", CouchbaseCacheConfiguration
                        .defaultCacheConfig().entryExpiry(Duration.ofMinutes(1))
                )
        }
    }

}

1.1.7。雷迪斯

如果Redis可用且已配置,则 aRedisCacheManager是自动配置的。可以通过设置spring.cache.cache-names属性在启动时创建额外的缓存,并且可以使用spring.cache.redis.*属性配置缓存默认值。例如,以下配置以10 分钟的生存时间cache1创建和cache2缓存:

特性
spring.cache.cache-names=cache1,cache2
spring.cache.redis.time-to-live=10m
yaml
spring:
  cache:
    cache-names: "cache1,cache2"
    redis:
      time-to-live: "10m"
默认情况下,会添加一个 key 前缀,这样,如果两个单独的缓存使用相同的 key,Redis 不会有重叠的 key,也不会返回无效值。如果您创建自己的RedisCacheManager.
您可以通过添加RedisCacheConfiguration @Bean自己的配置来完全控制默认配置。如果您需要自定义默认序列化策略,这会很有用。

如果您需要对配置进行更多控制,请考虑注册一个RedisCacheManagerBuilderCustomizerbean。cache1以下示例显示了一个自定义程序,该自定义程序为和配置特定的生存时间cache2

java
import java.time.Duration;

import org.springframework.boot.autoconfigure.cache.RedisCacheManagerBuilderCustomizer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheConfiguration;

@Configuration(proxyBeanMethods = false)
public class MyRedisCacheManagerConfiguration {

    @Bean
    public RedisCacheManagerBuilderCustomizer myRedisCacheManagerBuilderCustomizer() {
        return (builder) -> builder
                .withCacheConfiguration("cache1", RedisCacheConfiguration
                        .defaultCacheConfig().entryTtl(Duration.ofSeconds(10)))
                .withCacheConfiguration("cache2", RedisCacheConfiguration
                        .defaultCacheConfig().entryTtl(Duration.ofMinutes(1)));

    }

}
科特林
import org.springframework.boot.autoconfigure.cache.RedisCacheManagerBuilderCustomizer
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.data.redis.cache.RedisCacheConfiguration
import java.time.Duration

@Configuration(proxyBeanMethods = false)
class MyRedisCacheManagerConfiguration {

    @Bean
    fun myRedisCacheManagerBuilderCustomizer(): RedisCacheManagerBuilderCustomizer {
        return RedisCacheManagerBuilderCustomizer { builder ->
            builder
                .withCacheConfiguration(
                    "cache1", RedisCacheConfiguration
                        .defaultCacheConfig().entryTtl(Duration.ofSeconds(10))
                )
                .withCacheConfiguration(
                    "cache2", RedisCacheConfiguration
                        .defaultCacheConfig().entryTtl(Duration.ofMinutes(1))
                )
        }
    }

}

1.1.8。咖啡因

Caffeine是 Java 8 对 Guava 缓存的重写,它取代了对 Guava 的支持。如果存在咖啡因,则会自动配置一个CaffeineCacheManager(由“Starter”提供)。spring-boot-starter-cache可以通过设置属性在启动时创建缓存,spring.cache.cache-names并且可以通过以下之一自定义缓存(按指示的顺序):

  1. 由定义的缓存规范spring.cache.caffeine.spec

  2. 定义了一个com.github.benmanes.caffeine.cache.CaffeineSpecbean

  3. 定义了一个com.github.benmanes.caffeine.cache.Caffeinebean

例如,以下配置创建cache1cache2缓存最大大小为 500,生存时间为 10 分钟

特性
spring.cache.cache-names=cache1,cache2
spring.cache.caffeine.spec=maximumSize=500,expireAfterAccess=600s
yaml
spring:
  cache:
    cache-names: "cache1,cache2"
    caffeine:
      spec: "maximumSize=500,expireAfterAccess=600s"

如果com.github.benmanes.caffeine.cache.CacheLoader定义了 bean,它会自动关联到CaffeineCacheManager. 由于CacheLoader将与缓存管理器管理的所有CacheLoader<Object, Object>缓存相关联,因此必须将其定义为。自动配置忽略任何其他泛型类型。

1.1.9。Cache2k

Cache2k是一个内存缓存。如果存在 Cache2k spring 集成,则 aSpringCache2kCacheManager是自动配置的。

可以通过设置spring.cache.cache-names属性在启动时创建缓存。可以使用Cache2kBuilderCustomizerbean 自定义缓存默认值。以下示例显示了一个自定义程序,它将缓存容量配置为 200 个条目,有效期为 5 分钟:

java
import java.util.concurrent.TimeUnit;

import org.springframework.boot.autoconfigure.cache.Cache2kBuilderCustomizer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration(proxyBeanMethods = false)
public class MyCache2kDefaultsConfiguration {

    @Bean
    public Cache2kBuilderCustomizer myCache2kDefaultsCustomizer() {
        return (builder) -> builder.entryCapacity(200)
                .expireAfterWrite(5, TimeUnit.MINUTES);
    }

}
科特林
import org.springframework.boot.autoconfigure.cache.Cache2kBuilderCustomizer
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import java.util.concurrent.TimeUnit

@Configuration(proxyBeanMethods = false)
class MyCache2kDefaultsConfiguration {

    @Bean
    fun myCache2kDefaultsCustomizer(): Cache2kBuilderCustomizer {
        return Cache2kBuilderCustomizer { builder ->
            builder.entryCapacity(200)
                .expireAfterWrite(5, TimeUnit.MINUTES)
        }
    }
}

1.1.10。简单的

如果找不到其他提供程序,ConcurrentHashMap则配置使用 a 作为缓存存储的简单实现。如果您的应用程序中不存在缓存库,则这是默认设置。默认情况下,缓存是根据需要创建的,但您可以通过设置cache-names属性来限制可用缓存的列表。例如,如果您只需要cache1cache2缓存,请cache-names按如下方式设置属性:

特性
spring.cache.cache-names=cache1,cache2
yaml
spring:
  cache:
    cache-names: "cache1,cache2"

如果您这样做并且您的应用程序使用未列出的缓存,那么它会在需要缓存时在运行时失败,但在启动时不会失败。如果您使用未声明的缓存,这类似于“真实”缓存提供程序的行为方式。

1.1.11。没有任何

@EnableCaching您的配置中存在时,也需要合适的缓存配置。如果您需要在某些环境中完全禁用缓存,请强制缓存类型none使用无操作实现,如以下示例所示:

特性
spring.cache.type=none
yaml
spring:
  cache:
    type: "none"

2. 榛树

如果Hazelcast在类路径上并且找到了合适的配置,Spring Boot 会自动配置一个HazelcastInstance您可以在应用程序中注入的配置。

Spring Boot 首先尝试通过检查以下配置选项来创建客户端:

  • 一个com.hazelcast.client.config.ClientConfig豆子的存在。

  • spring.hazelcast.config属性定义的配置文件。

  • hazelcast.client.config系统属性的存在。

  • Ahazelcast-client.xml在工作目录或类路径的根目录中。

  • Ahazelcast-client.yaml在工作目录或类路径的根目录中。

Hazelcast 3 支持已弃用。如果你仍然需要降级到 Hazelcast 3,hazelcast-client应该添加到 classpath 来配置一个客户端。

如果无法创建客户端,Spring Boot 会尝试配置嵌入式服务器。如果你定义一个com.hazelcast.config.Configbean,Spring Boot 会使用它。如果您的配置定义了实例名称,Spring Boot 会尝试定位现有实例而不是创建新实例。

您还可以通过配置指定要使用的 Hazelcast 配置文件,如下例所示:

特性
spring.hazelcast.config=classpath:config/my-hazelcast.xml
yaml
spring:
  hazelcast:
    config: "classpath:config/my-hazelcast.xml"

否则,Spring Boot 会尝试从默认位置查找 Hazelcast 配置:hazelcast.xml在工作目录或类路径的根目录中,或者.yaml在相同位置的对应位置。我们还检查是否hazelcast.config设置了系统属性。有关更多详细信息,请参阅Hazelcast 文档

默认情况下,@SpringAware支持 Hazelcast 组件。ManagementContext可以通过声明一个大于零 的HazelcastConfigCustomizerbean来覆盖 。@Order
Spring Boot 还具有对 Hazelcast 的显式缓存支持。如果启用了缓存,HazelcastInstance则会自动将其包装在CacheManager实现中。

3.石英调度器

Spring Boot 为使用Quartz 调度程序提供了多种便利,包括spring-boot-starter-quartz“Starter”。如果 Quartz 可用,则 aScheduler是自动配置的(通过SchedulerFactoryBean抽象)。

以下类型的 Bean 会自动拾取并与 相关联Scheduler

  • JobDetail: 定义一个特定的 Job。 JobDetail可以使用JobBuilderAPI 构建实例。

  • Calendar.

  • Trigger:定义何时触发特定作业。

默认情况下,使用内存JobStore。但是,如果DataSourcebean 在您的应用程序中可用并且相应地配置了spring.quartz.job-store-type属性,则可以配置基于 JDBC 的存储,如以下示例所示:

特性
spring.quartz.job-store-type=jdbc
yaml
spring:
  quartz:
    job-store-type: "jdbc"

使用 JDBC 存储时,可以在启动时初始化模式,如下例所示:

特性
spring.quartz.jdbc.initialize-schema=always
yaml
spring:
  quartz:
    jdbc:
      initialize-schema: "always"
默认情况下,使用 Quartz 库提供的标准脚本检测和初始化数据库。这些脚本删除现有表,在每次重新启动时删除所有触发器。也可以通过设置spring.quartz.jdbc.schema属性来提供自定义脚本。

要让 Quartz 使用DataSource应用程序的 main 以外的bean,请DataSource声明一个DataSourcebean,@Bean并用@QuartzDataSource. 这样做可以确保 Quartz-specificDataSourceSchedulerFactoryBean和 用于模式初始化。类似地,要让 Quartz 使用TransactionManager非应用程序的 mainTransactionManager声明一个TransactionManagerbean,@Bean用 . 注释它的方法@QuartzTransactionManager

默认情况下,配置创建的作业不会覆盖已从持久作业存储中读取的已注册作业。要启用覆盖现有作业定义,请设置该spring.quartz.overwrite-existing-jobs属性。

Quartz Scheduler 配置可以使用spring.quartz属性和SchedulerFactoryBeanCustomizerbean 进行自定义,这允许编程SchedulerFactoryBean自定义。高级 Quartz 配置属性可以使用spring.quartz.properties.*.

特别是,一个Executorbean 与调度器无关,因为 Quartz 提供了一种通过spring.quartz.properties. 如果需要自定义任务执行器,可以考虑实现SchedulerFactoryBeanCustomizer.

作业可以定义 setter 来注入数据映射属性。常规 bean 也可以通过类似的方式注入,如下例所示:

java
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;

import org.springframework.scheduling.quartz.QuartzJobBean;

public class MySampleJob extends QuartzJobBean {

    // fields ...

    private MyService myService;

    private String name;

    // Inject "MyService" bean
    public void setMyService(MyService myService) {
        this.myService = myService;
    }

    // Inject the "name" job data property
    public void setName(String name) {
        this.name = name;
    }

    @Override
    protected void executeInternal(JobExecutionContext context) throws JobExecutionException {
        this.myService.someMethod(context.getFireTime(), this.name);
    }

}
科特林
import org.quartz.JobExecutionContext
import org.springframework.scheduling.quartz.QuartzJobBean

class MySampleJob : QuartzJobBean() {

    // fields ...

    private var myService: MyService? = null

    private var name: String? = null

    // Inject "MyService" bean
    fun setMyService(myService: MyService?) {
        this.myService = myService
    }

    // Inject the "name" job data property
    fun setName(name: String?) {
        this.name = name
    }

    override fun executeInternal(context: JobExecutionContext) {
        myService!!.someMethod(context.fireTime, name)
    }

}

4. 发送电子邮件

Spring Framework 提供了使用接口发送电子邮件的抽象JavaMailSender,Spring Boot 为其提供了自动配置以及启动模块。

有关如何使用JavaMailSender.

如果spring.mail.host相关库(由 定义spring-boot-starter-mail)可用,JavaMailSender则创建默认值(如果不存在)。可以通过命名空间中的配置项进一步自定义发送者spring.mail。有关MailProperties更多详细信息,请参阅。

特别是,某些默认超时值是无限的,您可能需要更改它以避免线程被无响应的邮件服务器阻塞,如以下示例所示:

特性
spring.mail.properties[mail.smtp.connectiontimeout]=5000
spring.mail.properties[mail.smtp.timeout]=3000
spring.mail.properties[mail.smtp.writetimeout]=5000
yaml
spring:
  mail:
    properties:
      "[mail.smtp.connectiontimeout]": 5000
      "[mail.smtp.timeout]": 3000
      "[mail.smtp.writetimeout]": 5000

也可以JavaMailSender使用现有Session的 JNDI 配置 a:

特性
spring.mail.jndi-name=mail/Session
yaml
spring:
  mail:
    jndi-name: "mail/Session"

设置a 时jndi-name,它优先于所有其他与会话相关的设置。

5. 验证

只要类路径上有 JSR-303 实现(例如 Hibernate 验证器),Bean Validation 1.1 支持的方法验证功能就会自动启用。javax.validation这让 bean 方法可以在其参数和/或返回值上使用约束进行注释。具有此类注释方法的目标类需要@Validated在类型级别使用注释进行注释,以便在其方法中搜索内联约束注释。

例如,以下服务触发第一个参数的验证,确保其大小在 8 到 10 之间:

java
import javax.validation.constraints.Size;

import org.springframework.stereotype.Service;
import org.springframework.validation.annotation.Validated;

@Service
@Validated
public class MyBean {

    public Archive findByCodeAndAuthor(@Size(min = 8, max = 10) String code, Author author) {
        return ...
    }

}
科特林
import org.springframework.stereotype.Service
import org.springframework.validation.annotation.Validated
import javax.validation.constraints.Size

@Service
@Validated
class MyBean {

    fun findByCodeAndAuthor(code: @Size(min = 8, max = 10) String?, author: Author?): Archive? {
        return null
    }

}

在约束消息中MessageSource解析时使用应用程序的。{parameters}这允许您将应用程序的messages.properties文件用于 Bean 验证消息。解析参数后,使用 Bean Validation 的默认插值器完成消息插值。

6.调用REST服务

如果您的应用程序调用远程 REST 服务,Spring Boot 使用 aRestTemplateWebClient.

6.1。休息模板

如果需要从应用程序调用远程 REST 服务,可以使用 Spring Framework 的RestTemplate类。由于RestTemplate实例通常需要在使用之前进行自定义,因此 Spring Boot 不提供任何单个自动配置的RestTemplatebean。但是,它确实会自动配置 a RestTemplateBuilder,可用于RestTemplate在需要时创建实例。自动配置RestTemplateBuilder确保 sensibleHttpMessageConverters应用于RestTemplate实例。

下面的代码展示了一个典型的例子:

java
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;

@Service
public class MyService {

    private final RestTemplate restTemplate;

    public MyService(RestTemplateBuilder restTemplateBuilder) {
        this.restTemplate = restTemplateBuilder.build();
    }

    public Details someRestCall(String name) {
        return this.restTemplate.getForObject("/{name}/details", Details.class, name);
    }

}
科特林
import org.springframework.boot.web.client.RestTemplateBuilder
import org.springframework.stereotype.Service
import org.springframework.web.client.RestTemplate

@Service
class MyService(restTemplateBuilder: RestTemplateBuilder) {

    private val restTemplate: RestTemplate

    init {
        restTemplate = restTemplateBuilder.build()
    }

    fun someRestCall(name: String): Details {
        return restTemplate.getForObject(
            "/{name}/details",
            Details::class.java, name
        )!!
    }

}
RestTemplateBuilder包括许多有用的方法,可用于快速配置RestTemplate. 例如,要添加 BASIC 身份验证支持,您可以使用builder.basicAuthentication("user", "password").build().

6.1.1. RestTemplate 自定义

有三种主要的RestTemplate自定义方法,具体取决于您希望自定义应用的范围。

要使任何自定义的范围尽可能窄,请注入自动配置RestTemplateBuilder,然后根据需要调用其方法。每个方法调用都会返回一个新RestTemplateBuilder实例,因此自定义只会影响构建器的这种使用。

要进行应用程序范围的附加定制,请使用RestTemplateCustomizerbean。所有这些 bean 都会自动注册到 auto-configuredRestTemplateBuilder中,并应用于使用它构建的任何模板。

以下示例显示了一个自定义程序,它为所有主机配置使用代理,除了192.168.0.5

java
import org.apache.http.HttpException;
import org.apache.http.HttpHost;
import org.apache.http.HttpRequest;
import org.apache.http.client.HttpClient;
import org.apache.http.conn.routing.HttpRoutePlanner;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.conn.DefaultProxyRoutePlanner;
import org.apache.http.protocol.HttpContext;

import org.springframework.boot.web.client.RestTemplateCustomizer;
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
import org.springframework.web.client.RestTemplate;

public class MyRestTemplateCustomizer implements RestTemplateCustomizer {

    @Override
    public void customize(RestTemplate restTemplate) {
        HttpRoutePlanner routePlanner = new CustomRoutePlanner(new HttpHost("proxy.example.com"));
        HttpClient httpClient = HttpClientBuilder.create().setRoutePlanner(routePlanner).build();
        restTemplate.setRequestFactory(new HttpComponentsClientHttpRequestFactory(httpClient));
    }

    static class CustomRoutePlanner extends DefaultProxyRoutePlanner {

        CustomRoutePlanner(HttpHost proxy) {
            super(proxy);
        }

        @Override
        public HttpHost determineProxy(HttpHost target, HttpRequest request, HttpContext context) throws HttpException {
            if (target.getHostName().equals("192.168.0.5")) {
                return null;
            }
            return super.determineProxy(target, request, context);
        }

    }

}
科特林
import org.apache.http.HttpException
import org.apache.http.HttpHost
import org.apache.http.HttpRequest
import org.apache.http.client.HttpClient
import org.apache.http.conn.routing.HttpRoutePlanner
import org.apache.http.impl.client.HttpClientBuilder
import org.apache.http.impl.conn.DefaultProxyRoutePlanner
import org.apache.http.protocol.HttpContext
import org.springframework.boot.web.client.RestTemplateCustomizer
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory
import org.springframework.web.client.RestTemplate
import kotlin.jvm.Throws

class MyRestTemplateCustomizer : RestTemplateCustomizer {

    override fun customize(restTemplate: RestTemplate) {
        val routePlanner: HttpRoutePlanner = CustomRoutePlanner(HttpHost("proxy.example.com"))
        val httpClient: HttpClient = HttpClientBuilder.create().setRoutePlanner(routePlanner).build()
        restTemplate.requestFactory = HttpComponentsClientHttpRequestFactory(httpClient)
    }

    internal class CustomRoutePlanner(proxy: HttpHost?) : DefaultProxyRoutePlanner(proxy) {

        @Throws(HttpException::class)
        public override fun determineProxy(target: HttpHost, request: HttpRequest, context: HttpContext): HttpHost? {
            if (target.hostName == "192.168.0.5") {
                return null
            }
            return  super.determineProxy(target, request, context)
        }

    }

}

最后,您可以定义自己的RestTemplateBuilderbean。这样做将替换自动配置的构建器。如果您希望RestTemplateCustomizer将任何 bean 应用于您的自定义构建器,就像自动配置所做的那样,请使用RestTemplateBuilderConfigurer. 以下示例公开了一个RestTemplateBuilder匹配 Spring Boot 的自动配置所做的事情,除了还指定了自定义连接和读取超时:

java
import java.time.Duration;

import org.springframework.boot.autoconfigure.web.client.RestTemplateBuilderConfigurer;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration(proxyBeanMethods = false)
public class MyRestTemplateBuilderConfiguration {

    @Bean
    public RestTemplateBuilder restTemplateBuilder(RestTemplateBuilderConfigurer configurer) {
        return configurer.configure(new RestTemplateBuilder()).setConnectTimeout(Duration.ofSeconds(5))
                .setReadTimeout(Duration.ofSeconds(2));
    }

}
科特林
import org.springframework.boot.autoconfigure.web.client.RestTemplateBuilderConfigurer
import org.springframework.boot.web.client.RestTemplateBuilder
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import java.time.Duration

@Configuration(proxyBeanMethods = false)
class MyRestTemplateBuilderConfiguration {

    @Bean
    fun restTemplateBuilder(configurer: RestTemplateBuilderConfigurer): RestTemplateBuilder {
        return configurer.configure(RestTemplateBuilder()).setConnectTimeout(Duration.ofSeconds(5))
            .setReadTimeout(Duration.ofSeconds(2))
    }

}

RestTemplateBuilder最极端(并且很少使用)的选项是在不使用配置器的情况下创建自己的bean。除了替换自动配置的构建器之外,这还可以防止RestTemplateCustomizer使用任何 bean。

6.2. 网络客户端

如果你的类路径上有 Spring WebFlux,你也可以选择使用WebClient来调用远程 REST 服务。与 相比RestTemplate,这个客户端有更多的功能感觉并且是完全反应式的。您可以在 Spring Framework 文档WebClient的专用部分中了解更多信息。

Spring Boot 为您创建并预配置了一个WebClient.Builder。强烈建议将其注入您的组件并使用它来创建WebClient实例。Spring Boot 正在配置该构建器以共享 HTTP 资源,以与服务器相同的方式反映编解码器设置(请参阅WebFlux HTTP 编解码器自动配置)等等。

下面的代码展示了一个典型的例子:

java
import org.neo4j.cypherdsl.core.Relationship.Details;
import reactor.core.publisher.Mono;

import org.springframework.stereotype.Service;
import org.springframework.web.reactive.function.client.WebClient;

@Service
public class MyService {

    private final WebClient webClient;

    public MyService(WebClient.Builder webClientBuilder) {
        this.webClient = webClientBuilder.baseUrl("https://example.org").build();
    }

    public Mono<Details> someRestCall(String name) {
        return this.webClient.get().uri("/{name}/details", name).retrieve().bodyToMono(Details.class);
    }

}
科特林
import org.neo4j.cypherdsl.core.Relationship
import org.springframework.stereotype.Service
import org.springframework.web.reactive.function.client.WebClient
import reactor.core.publisher.Mono

@Service
class MyService(webClientBuilder: WebClient.Builder) {

    private val webClient: WebClient

    init {
        webClient = webClientBuilder.baseUrl("https://example.org").build()
    }

    fun someRestCall(name: String?): Mono<Relationship.Details> {
        return webClient.get().uri("/{name}/details", name).retrieve().bodyToMono(
            Relationship.Details::class.java
        )
    }

}

6.2.1. WebClient 运行时

Spring Boot 将根据应用程序类路径上可用的库自动检测ClientHttpConnector使用哪个来驱动。WebClient目前支持 Reactor Netty、Jetty RS 客户端和 Apache HttpClient。

启动器默认spring-boot-starter-webflux依赖io.projectreactor.netty:reactor-netty,它带来了服务器和客户端的实现。如果您选择使用 Jetty 作为响应式服务器,您应该添加对 Jetty Reactive HTTP 客户端库的依赖,org.eclipse.jetty:jetty-reactive-httpclient. 对服务器和客户端使用相同的技术有其优势,因为它会自动在客户端和服务器之间共享 HTTP 资源。

开发人员可以通过提供自定义ReactorResourceFactoryJettyResourceFactorybean 来覆盖 Jetty 和 Reactor Netty 的资源配置——这将应用于客户端和服务器。

如果您希望为客户端覆盖该选择,您可以定义自己的ClientHttpConnectorbean 并完全控制客户端配置。

WebClient您可以在 Spring Framework 参考文档中了解有关配置选项的更多信息。

6.2.2. Web客户端定制

有三种主要的WebClient自定义方法,具体取决于您希望自定义应用的范围。

要使任何自定义的范围尽可能窄,请注入自动配置WebClient.Builder,然后根据需要调用其方法。 WebClient.Builder实例是有状态的:构建器上的任何更改都会反映在随后使用它创建的所有客户端中。如果您想使用同一个构建器创建多个客户端,您还可以考虑使用WebClient.Builder other = builder.clone();.

要对所有WebClient.Builder实例进行应用程序范围的附加定制,您可以声明WebClientCustomizerbean 并WebClient.Builder在注入点进行本地更改。

最后,您可以回退到原始 API 并使用WebClient.create(). 在这种情况下,不会应用自动配置或WebClientCustomizer

7. 网络服务

Spring Boot 提供 Web 服务自动配置,因此您所要做的就是定义您的Endpoints.

使用该模块可以轻松访问Spring Web Services 功能。spring-boot-starter-webservices

SimpleWsdl11DefinitionSimpleXsdSchema可以分别为您的 WSDL 和 XSD 自动创建和bean。为此,请配置它们的位置,如以下示例所示:

特性
spring.webservices.wsdl-locations=classpath:/wsdl
yaml
spring:
  webservices:
    wsdl-locations: "classpath:/wsdl"

7.1。使用 WebServiceTemplate 调用 Web 服务

如果需要从应用程序调用远程 Web 服务,可以使用WebServiceTemplate该类。由于WebServiceTemplate实例通常需要在使用之前进行自定义,因此 Spring Boot 不提供任何单个自动配置的WebServiceTemplatebean。但是,它确实会自动配置 a WebServiceTemplateBuilder,可用于WebServiceTemplate在需要时创建实例。

下面的代码展示了一个典型的例子:

java
import org.springframework.boot.webservices.client.WebServiceTemplateBuilder;
import org.springframework.stereotype.Service;
import org.springframework.ws.client.core.WebServiceTemplate;
import org.springframework.ws.soap.client.core.SoapActionCallback;

@Service
public class MyService {

    private final WebServiceTemplate webServiceTemplate;

    public MyService(WebServiceTemplateBuilder webServiceTemplateBuilder) {
        this.webServiceTemplate = webServiceTemplateBuilder.build();
    }

    public SomeResponse someWsCall(SomeRequest detailsReq) {
        return (SomeResponse) this.webServiceTemplate.marshalSendAndReceive(detailsReq,
                new SoapActionCallback("https://ws.example.com/action"));
    }

}
科特林
import org.springframework.boot.webservices.client.WebServiceTemplateBuilder
import org.springframework.stereotype.Service
import org.springframework.ws.client.core.WebServiceTemplate
import org.springframework.ws.soap.client.core.SoapActionCallback

@Service
class MyService(webServiceTemplateBuilder: WebServiceTemplateBuilder) {

    private val webServiceTemplate: WebServiceTemplate

    init {
        webServiceTemplate = webServiceTemplateBuilder.build()
    }

    fun someWsCall(detailsReq: SomeRequest?): SomeResponse {
        return webServiceTemplate.marshalSendAndReceive(
            detailsReq,
            SoapActionCallback("https://ws.example.com/action")
        ) as SomeResponse
    }

}

默认情况下,使用类路径上可用的 HTTP 客户端库WebServiceTemplateBuilder检测合适的基于HTTP 的。WebServiceMessageSender您还可以自定义读取和连接超时,如下所示:

java
import java.time.Duration;

import org.springframework.boot.webservices.client.HttpWebServiceMessageSenderBuilder;
import org.springframework.boot.webservices.client.WebServiceTemplateBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.ws.client.core.WebServiceTemplate;
import org.springframework.ws.transport.WebServiceMessageSender;

@Configuration(proxyBeanMethods = false)
public class MyWebServiceTemplateConfiguration {

    @Bean
    public WebServiceTemplate webServiceTemplate(WebServiceTemplateBuilder builder) {
        WebServiceMessageSender sender = new HttpWebServiceMessageSenderBuilder()
                .setConnectTimeout(Duration.ofSeconds(5))
                .setReadTimeout(Duration.ofSeconds(2))
                .build();
        return builder.messageSenders(sender).build();
    }

}
科特林
import org.springframework.boot.webservices.client.HttpWebServiceMessageSenderBuilder
import org.springframework.boot.webservices.client.WebServiceTemplateBuilder
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.ws.client.core.WebServiceTemplate
import java.time.Duration

@Configuration(proxyBeanMethods = false)
class MyWebServiceTemplateConfiguration {

    @Bean
    fun webServiceTemplate(builder: WebServiceTemplateBuilder): WebServiceTemplate {
        val sender = HttpWebServiceMessageSenderBuilder()
            .setConnectTimeout(Duration.ofSeconds(5))
            .setReadTimeout(Duration.ofSeconds(2))
            .build()
        return builder.messageSenders(sender).build()
    }

}

8. 使用 JTA 的分布式事务

Spring Boot 通过使用Atomikos嵌入式事务管理器支持跨多个 XA 资源的分布式 JTA 事务。部署到合适的 Java EE 应用服务器时也支持 JTA 事务。

当检测到 JTA 环境时,使用 SpringJtaTransactionManager来管理事务。自动配置的 JMS、DataSource 和 JPA bean 已升级为支持 XA 事务。您可以使用标准的 Spring 习惯用法,例如@Transactional,来参与分布式事务。如果您在 JTA 环境中并且仍想使用本地事务,则可以将spring.jta.enabled属性设置false为禁用 JTA 自动配置。

8.1。使用 Atomikos 事务管理器

Atomikos是一种流行的开源事务管理器,可以嵌入到您的 Spring Boot 应用程序中。您可以使用spring-boot-starter-jta-atomikos启动器来拉入适当的 Atomikos 库。Spring Boot 自动配置 Atomikos 并确保将适当depends-on的设置应用于您的 Spring bean 以实现正确的启动和关闭顺序。

默认情况下,Atomikos 事务日志被写入transaction-logs应用程序主目录中的一个目录(应用程序 jar 文件所在的目录)。您可以通过在文件中设置spring.jta.log-dir属性来自定义此目录的位置。application.properties以 开头的属性spring.jta.atomikos.properties也可用于自定义 Atomikos UserTransactionServiceImp。有关完整的详细信息,请参阅AtomikosPropertiesJavadoc

为了确保多个事务管理器可以安全地协调相同的资源管理器,每个 Atomikos 实例必须配置一个唯一的 ID。默认情况下,此 ID 是运行 Atomikos 的机器的 IP 地址。为确保生产中的唯一性,您应该spring.jta.transaction-manager-id为应用程序的每个实例配置不同的属性值。

8.2. 使用 Java EE 托管事务管理器

如果将 Spring Boot 应用程序打包为warorear文件并将其部署到 Java EE 应用程序服务器,则可以使用应用程序服务器的内置事务管理器。Spring Boot 尝试通过查看常见的 JNDI 位置(java:comp/UserTransactionjava:comp/TransactionManager等)来自动配置事务管理器。如果您使用应用服务器提供的事务服务,您通常还希望确保所有资源都由服务器管理并通过 JNDI 公开。Spring Boot 尝试通过ConnectionFactory在 JNDI 路径(java:/JmsXAjava:/XAConnectionFactory)处查找 a 来自动配置 JMS,您可以使用该spring.datasource.jndi-name属性来配置您的DataSource.

8.3. 混合 XA 和非 XA JMS 连接

使用 JTA 时,主 JMS ConnectionFactorybean 是 XA 感知的并参与分布式事务。您可以注入您的 bean 而无需使用任何@Qualifier

java
public MyBean(ConnectionFactory connectionFactory) {
    // ...
}
科特林

在某些情况下,您可能希望使用非 XA 来处理某些 JMS 消息ConnectionFactory。例如,您的 JMS 处理逻辑可能需要比 XA 超时更长的时间。

如果你想使用非 XA ConnectionFactory,你可以使用nonXaJmsConnectionFactorybean:

java
public MyBean(@Qualifier("nonXaJmsConnectionFactory") ConnectionFactory connectionFactory) {
    // ...
}
科特林

为了保持一致性,jmsConnectionFactorybean 也使用 bean 别名来提供xaJmsConnectionFactory

java
public MyBean(@Qualifier("xaJmsConnectionFactory") ConnectionFactory connectionFactory) {
    // ...
}
科特林

8.4. 支持替代嵌入式事务管理器

和接口可用于支持替代的嵌入式事务管理器XAConnectionFactoryWrapperXADataSourceWrapper接口负责包装beanXAConnectionFactory并将XADataSource它们作为常规 bean 公开ConnectionFactoryDataSource它们透明地注册到分布式事务中。DataSource 和 JMS 自动配置使用 JTA 变体,前提是您JtaTransactionManagerApplicationContext.

AtomikosXAConnectionFactoryWrapperAtomikosXADataSourceWrapper提供了如何编写 XA 包装器的很好的示例。

9.接下来要读什么

您现在应该对 Spring Boot 的核心特性以及 Spring Boot 通过自动配置提供支持的各种技术有了很好的了解。

接下来的几节将详细介绍如何将应用程序部署到云平台。您可以在下一节中阅读有关构建容器映像的信息,或跳到生产就绪功能部分。


1. see XML Configuration