Merge branch '2.6.x' into 2.7.x

This commit is contained in:
Phillip Webb 2022-02-16 20:24:59 -08:00
commit 26512f8ac6
8 changed files with 39 additions and 36 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2021 the original author or authors. * Copyright 2012-2022 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2021 the original author or authors. * Copyright 2012-2022 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -24,9 +24,10 @@ There are also several guides that cover Spring MVC available at https://spring.
TIP: You can define as many `RouterFunction` beans as you like to modularize the definition of the router. TIP: You can define as many `RouterFunction` beans as you like to modularize the definition of the router.
Beans can be ordered if you need to apply a precedence. Beans can be ordered if you need to apply a precedence.
[[web.servlet.spring-mvc.auto-configuration]] [[web.servlet.spring-mvc.auto-configuration]]
==== Spring MVC Auto-configuration ==== Spring MVC Auto-configuration
Spring Boot provides auto-configuration for Spring MVC that works well with most applications. Spring Boot provides auto-configuration for Spring MVC that works well with most applications.
The auto-configuration adds the following features on top of Spring's defaults: The auto-configuration adds the following features on top of Spring's defaults:

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2021 the original author or authors. * Copyright 2012-2022 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@ -22,6 +22,7 @@ import java.nio.charset.StandardCharsets;
import java.util.function.Consumer; import java.util.function.Consumer;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import org.springframework.util.Assert;
import org.springframework.util.StreamUtils; import org.springframework.util.StreamUtils;
/** /**
@ -83,13 +84,8 @@ public class LogUpdateEvent extends UpdateEvent {
} }
} }
catch (IllegalStateException ex) { catch (IllegalStateException ex) {
// Parsing has failed, abort further parsing byte[] message = ex.getMessage().getBytes(StandardCharsets.UTF_8);
LogUpdateEvent abortedEvent = new LogUpdateEvent(StreamType.STD_ERR, consumer.accept(new LogUpdateEvent(StreamType.STD_ERR, message));
ex.getMessage().getBytes(StandardCharsets.UTF_8));
consumer.accept(abortedEvent);
// At this point, the inputStream is burned, consume it fully to prevent
// further processing
StreamUtils.drain(inputStream); StreamUtils.drain(inputStream);
} }
finally { finally {
@ -102,21 +98,12 @@ public class LogUpdateEvent extends UpdateEvent {
if (header == null) { if (header == null) {
return null; return null;
} }
StreamType streamType = StreamType.forId(header[0]);
// First byte denotes stream type. 0 = stdin, 1 = stdout, 2 = stderr
byte streamTypeId = header[0];
if (streamTypeId < 0 || streamTypeId >= StreamType.values().length) {
throw new IllegalStateException("Stream type is out of bounds. Must be >= 0 and < "
+ StreamType.values().length + ", but was " + streamTypeId + ". Will abort parsing.");
}
long size = 0; long size = 0;
for (int i = 0; i < 4; i++) { for (int i = 0; i < 4; i++) {
size = (size << 8) + (header[i + 4] & 0xff); size = (size << 8) + (header[i + 4] & 0xff);
} }
byte[] payload = read(inputStream, size); byte[] payload = read(inputStream, size);
StreamType streamType = StreamType.values()[streamTypeId];
return new LogUpdateEvent(streamType, payload); return new LogUpdateEvent(streamType, payload);
} }
@ -152,7 +139,14 @@ public class LogUpdateEvent extends UpdateEvent {
/** /**
* Output to {@code stderr}. * Output to {@code stderr}.
*/ */
STD_ERR STD_ERR;
static StreamType forId(byte id) {
int upperBound = values().length;
Assert.state(id > 0 && id < upperBound,
() -> "Stream type is out of bounds. Must be >= 0 and < " + upperBound + ", but was " + id);
return values()[id];
}
} }

View File

@ -57,8 +57,7 @@ class LogUpdateEventTests {
void readSucceedsWhenStreamTypeIsInvalid() throws IOException { void readSucceedsWhenStreamTypeIsInvalid() throws IOException {
List<LogUpdateEvent> events = readAll("log-update-event-invalid-stream-type.stream"); List<LogUpdateEvent> events = readAll("log-update-event-invalid-stream-type.stream");
assertThat(events).hasSize(1); assertThat(events).hasSize(1);
assertThat(events.get(0).toString()) assertThat(events.get(0).toString()).isEqualTo("Stream type is out of bounds. Must be >= 0 and < 3, but was 3");
.isEqualTo("Stream type is out of bounds. Must be >= 0 and < 3, but was 3. Will abort parsing.");
} }
private List<LogUpdateEvent> readAll(String name) throws IOException { private List<LogUpdateEvent> readAll(String name) throws IOException {

View File

@ -25,6 +25,7 @@ import java.util.concurrent.Callable;
import org.gradle.api.GradleException; import org.gradle.api.GradleException;
import org.gradle.api.Plugin; import org.gradle.api.Plugin;
import org.gradle.api.Project; import org.gradle.api.Project;
import org.gradle.api.artifacts.Configuration;
import org.gradle.api.distribution.Distribution; import org.gradle.api.distribution.Distribution;
import org.gradle.api.distribution.DistributionContainer; import org.gradle.api.distribution.DistributionContainer;
import org.gradle.api.file.CopySpec; import org.gradle.api.file.CopySpec;
@ -68,10 +69,7 @@ final class ApplicationPluginAction implements PluginApplicationAction {
.setTemplate(project.getResources().getText().fromString(loadResource("/windowsStartScript.txt"))); .setTemplate(project.getResources().getText().fromString(loadResource("/windowsStartScript.txt")));
project.getConfigurations().all((configuration) -> { project.getConfigurations().all((configuration) -> {
if ("bootArchives".equals(configuration.getName())) { if ("bootArchives".equals(configuration.getName())) {
CopySpec libCopySpec = project.copySpec().into("lib") distribution.getContents().with(artifactFilesToLibCopySpec(project, configuration));
.from((Callable<FileCollection>) () -> configuration.getArtifacts().getFiles());
libCopySpec.setFileMode(0644);
distribution.getContents().with(libCopySpec);
createStartScripts.setClasspath(configuration.getArtifacts().getFiles()); createStartScripts.setClasspath(configuration.getArtifacts().getFiles());
} }
}); });
@ -82,6 +80,16 @@ final class ApplicationPluginAction implements PluginApplicationAction {
applicationConvention::getApplicationDefaultJvmArgs); applicationConvention::getApplicationDefaultJvmArgs);
} }
private CopySpec artifactFilesToLibCopySpec(Project project, Configuration configuration) {
CopySpec copySpec = project.copySpec().into("lib").from(artifactFiles(configuration));
copySpec.setFileMode(0644);
return copySpec;
}
private Callable<FileCollection> artifactFiles(Configuration configuration) {
return () -> configuration.getArtifacts().getFiles();
}
@Override @Override
public Class<? extends Plugin<Project>> getPluginClass() { public Class<? extends Plugin<Project>> getPluginClass() {
return ApplicationPlugin.class; return ApplicationPlugin.class;

View File

@ -83,7 +83,7 @@ final class JavaPluginAction implements PluginApplicationAction {
configureBootBuildImageTask(project, bootJar); configureBootBuildImageTask(project, bootJar);
configureArtifactPublication(bootJar); configureArtifactPublication(bootJar);
configureBootRunTask(project); configureBootRunTask(project);
configureUtf8Encoding(project); project.afterEvaluate(this::configureUtf8Encoding);
configureParametersCompilerArg(project); configureParametersCompilerArg(project);
configureAdditionalMetadataLocations(project); configureAdditionalMetadataLocations(project);
} }
@ -166,13 +166,14 @@ final class JavaPluginAction implements PluginApplicationAction {
return project.getConvention().getPlugin(JavaPluginConvention.class); return project.getConvention().getPlugin(JavaPluginConvention.class);
} }
private void configureUtf8Encoding(Project project) { private void configureUtf8Encoding(Project evaluatedProject) {
project.afterEvaluate( evaluatedProject.getTasks().withType(JavaCompile.class).configureEach(this::configureUtf8Encoding);
(evaluated) -> evaluated.getTasks().withType(JavaCompile.class).configureEach((compile) -> { }
if (compile.getOptions().getEncoding() == null) {
compile.getOptions().setEncoding("UTF-8"); private void configureUtf8Encoding(JavaCompile compile) {
} if (compile.getOptions().getEncoding() == null) {
})); compile.getOptions().setEncoding("UTF-8");
}
} }
private void configureParametersCompilerArg(Project project) { private void configureParametersCompilerArg(Project project) {