Browse Source
This also adds a FailureAnalyzer which prints a helpful message how to fix that problem. Closes gh-38903pull/40611/head
7 changed files with 187 additions and 23 deletions
@ -0,0 +1,44 @@
@@ -0,0 +1,44 @@
|
||||
/* |
||||
* 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. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.ssl; |
||||
|
||||
/** |
||||
* Thrown when a bundle content location is not watchable. |
||||
* |
||||
* @author Moritz Halbritter |
||||
*/ |
||||
class BundleContentNotWatchableException extends RuntimeException { |
||||
|
||||
private final BundleContentProperty property; |
||||
|
||||
BundleContentNotWatchableException(BundleContentProperty property) { |
||||
super("The content of '%s' is not watchable. Only 'file:' resources are watchable, but '%s' has been set" |
||||
.formatted(property.name(), property.value())); |
||||
this.property = property; |
||||
} |
||||
|
||||
private BundleContentNotWatchableException(String bundleName, BundleContentProperty property, Throwable cause) { |
||||
super("The content of '%s' from bundle '%s' is not watchable'. Only 'file:' resources are watchable, but '%s' has been set" |
||||
.formatted(property.name(), bundleName, property.value()), cause); |
||||
this.property = property; |
||||
} |
||||
|
||||
BundleContentNotWatchableException withBundleName(String bundleName) { |
||||
return new BundleContentNotWatchableException(bundleName, this.property, this); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,37 @@
@@ -0,0 +1,37 @@
|
||||
/* |
||||
* 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. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.ssl; |
||||
|
||||
import org.springframework.boot.diagnostics.AbstractFailureAnalyzer; |
||||
import org.springframework.boot.diagnostics.FailureAnalysis; |
||||
|
||||
/** |
||||
* An {@link AbstractFailureAnalyzer} that performs analysis of non-watchable bundle |
||||
* content failures caused by {@link BundleContentNotWatchableException}. |
||||
* |
||||
* @author Moritz Halbritter |
||||
*/ |
||||
class BundleContentNotWatchableFailureAnalyzer extends AbstractFailureAnalyzer<BundleContentNotWatchableException> { |
||||
|
||||
@Override |
||||
protected FailureAnalysis analyze(Throwable rootFailure, BundleContentNotWatchableException cause) { |
||||
return new FailureAnalysis(cause.getMessage(), "Update your application to correct the invalid configuration:\n" |
||||
+ "Either use a watchable resource, or disable bundle reloading by setting reload-on-update = false on the bundle.", |
||||
cause); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,58 @@
@@ -0,0 +1,58 @@
|
||||
/* |
||||
* 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. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.ssl; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.boot.diagnostics.FailureAnalysis; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link BundleContentNotWatchableFailureAnalyzer}. |
||||
* |
||||
* @author Moritz Halbritter |
||||
*/ |
||||
class BundleContentNotWatchableFailureAnalyzerTests { |
||||
|
||||
@Test |
||||
void shouldAnalyze() { |
||||
FailureAnalysis failureAnalysis = performAnalysis(null); |
||||
assertThat(failureAnalysis.getDescription()).isEqualTo( |
||||
"The content of 'name' is not watchable. Only 'file:' resources are watchable, but 'classpath:resource.pem' has been set"); |
||||
assertThat(failureAnalysis.getAction()) |
||||
.isEqualTo("Update your application to correct the invalid configuration:\n" |
||||
+ "Either use a watchable resource, or disable bundle reloading by setting reload-on-update = false on the bundle."); |
||||
} |
||||
|
||||
@Test |
||||
void shouldAnalyzeWithBundle() { |
||||
FailureAnalysis failureAnalysis = performAnalysis("bundle-1"); |
||||
assertThat(failureAnalysis.getDescription()).isEqualTo( |
||||
"The content of 'name' from bundle 'bundle-1' is not watchable'. Only 'file:' resources are watchable, but 'classpath:resource.pem' has been set"); |
||||
} |
||||
|
||||
private FailureAnalysis performAnalysis(String bundle) { |
||||
BundleContentNotWatchableException failure = new BundleContentNotWatchableException( |
||||
new BundleContentProperty("name", "classpath:resource.pem")); |
||||
if (bundle != null) { |
||||
failure = failure.withBundleName(bundle); |
||||
} |
||||
return new BundleContentNotWatchableFailureAnalyzer().analyze(failure); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue