Merge branch '3.3.x'

Closes gh-42976
This commit is contained in:
Stéphane Nicoll 2024-11-02 20:25:35 +09:00
commit fdf24c6caa
4 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -97,7 +97,7 @@ class CloudFoundrySecurityService {
/**
* Return all token keys known by the UAA.
* @return a list of token keys
* @return a map of token keys
*/
Map<String, String> fetchTokenKeys() {
try {

View File

@ -31,8 +31,8 @@ import org.springframework.web.client.RestClient;
* Typically used as follows: <pre class="code">
* &#064;Bean
* public MyBean myBean(RestClient.Builder restClientBuilder, RestClientSsl ssl) {
* RestClient restClientrestClient= restClientBuilder.apply(ssl.fromBundle("mybundle")).build();
* return new MyBean(webClient);
* RestClient restClient = restClientBuilder.apply(ssl.fromBundle("mybundle")).build();
* return new MyBean(restClient);
* }
* </pre> NOTE: Apply SSL configuration will replace any previously
* {@link RestClient.Builder#requestFactory configured} {@link ClientHttpRequestFactory}.

View File

@ -1,5 +1,5 @@
/*
* Copyright 2012-2023 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -15,6 +15,6 @@
*/
/**
* Non-blocking IO {@link java.nio.file.FileSystem} implementation for nested suppoprt.
* Non-blocking IO {@link java.nio.file.FileSystem} implementation for nested support.
*/
package org.springframework.boot.loader.nio.file;

View File

@ -528,7 +528,7 @@ public class TomcatServletWebServerFactory extends AbstractServletWebServerFacto
/**
* Returns a mutable set of the patterns that match jars to ignore for TLD scanning.
* @return the list of jars to ignore for TLD scanning
* @return the set of jars to ignore for TLD scanning
*/
public Set<String> getTldSkipPatterns() {
return this.tldSkipPatterns;