9 changed files with 213 additions and 7 deletions
@ -0,0 +1,58 @@
@@ -0,0 +1,58 @@
|
||||
/* |
||||
* Copyright 2012-2022 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.web.server.context; |
||||
|
||||
import org.springframework.boot.WebApplicationType; |
||||
import org.springframework.context.ApplicationContextException; |
||||
import org.springframework.lang.NonNull; |
||||
|
||||
/** |
||||
* Throws exception when web server factory bean is missing. |
||||
* |
||||
* @author Guirong Hu |
||||
* @since 2.7.0 |
||||
*/ |
||||
@SuppressWarnings("serial") |
||||
public class MissingWebServerFactoryBeanException extends ApplicationContextException { |
||||
|
||||
private final WebApplicationType webApplicationType; |
||||
|
||||
/** |
||||
* Create a new {@code MissingWebServerFactoryBeanException} with the given web |
||||
* application context class and the given web server factory class and the given type |
||||
* of web application. |
||||
* @param webApplicationContextClass the web application context class
|
||||
* @param webServerFactoryClass the web server factory class
|
||||
* @param webApplicationType the type of web application |
||||
*/ |
||||
public MissingWebServerFactoryBeanException(@NonNull Class<?> webApplicationContextClass, |
||||
@NonNull Class<?> webServerFactoryClass, @NonNull WebApplicationType webApplicationType) { |
||||
super(String.format("Unable to start %s due to missing %s bean.", webApplicationContextClass.getSimpleName(), |
||||
webServerFactoryClass.getSimpleName())); |
||||
this.webApplicationType = webApplicationType; |
||||
} |
||||
|
||||
/** |
||||
* Returns the type of web application that is being run. |
||||
* @return the type of web application |
||||
* @since 2.7.0 |
||||
*/ |
||||
public WebApplicationType getWebApplicationType() { |
||||
return this.webApplicationType; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,49 @@
@@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright 2012-2022 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.web.server.context; |
||||
|
||||
import org.springframework.boot.WebApplicationType; |
||||
import org.springframework.boot.diagnostics.AbstractFailureAnalyzer; |
||||
import org.springframework.boot.diagnostics.FailureAnalysis; |
||||
import org.springframework.boot.diagnostics.FailureAnalyzer; |
||||
import org.springframework.context.ApplicationContextException; |
||||
|
||||
/** |
||||
* A {@link FailureAnalyzer} that performs analysis of failures caused by an |
||||
* {@link MissingWebServerFactoryBeanException}. |
||||
* |
||||
* @author Guirong Hu |
||||
*/ |
||||
class MissingWebServerFactoryBeanFailureAnalyzer extends AbstractFailureAnalyzer<ApplicationContextException> { |
||||
|
||||
private static final String ACTION = "Check your application's dependencies on supported web servers " |
||||
+ "or configuration of web application type."; |
||||
|
||||
@Override |
||||
protected FailureAnalysis analyze(Throwable rootFailure, ApplicationContextException cause) { |
||||
Throwable rootCause = cause.getCause(); |
||||
if (rootCause instanceof MissingWebServerFactoryBeanException) { |
||||
WebApplicationType webApplicationType = ((MissingWebServerFactoryBeanException) rootCause) |
||||
.getWebApplicationType(); |
||||
return new FailureAnalysis(String.format( |
||||
"Reason: The running web application is of type %s, but the dependent class is missing.", |
||||
webApplicationType.name().toLowerCase()), ACTION, cause); |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
/* |
||||
* Copyright 2012-2022 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. |
||||
*/ |
||||
|
||||
/** |
||||
* Web server integrations with Spring's |
||||
* {@link org.springframework.context.ApplicationContext ApplicationContext}. |
||||
*/ |
||||
package org.springframework.boot.web.server.context; |
||||
@ -0,0 +1,70 @@
@@ -0,0 +1,70 @@
|
||||
/* |
||||
* Copyright 2012-2022 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.web.server.context; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.boot.diagnostics.FailureAnalysis; |
||||
import org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext; |
||||
import org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext; |
||||
import org.springframework.context.ApplicationContextException; |
||||
import org.springframework.context.ConfigurableApplicationContext; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link MissingWebServerFactoryBeanFailureAnalyzer}. |
||||
* |
||||
* @author Guirong Hu |
||||
*/ |
||||
class MissingWebServerFactoryBeanFailureAnalyzerTests { |
||||
|
||||
@Test |
||||
void missingServletWebServerFactoryBeanFailure() { |
||||
ApplicationContextException failure = createFailure(new ServletWebServerApplicationContext()); |
||||
assertThat(failure).isNotNull(); |
||||
FailureAnalysis analysis = new MissingWebServerFactoryBeanFailureAnalyzer().analyze(failure); |
||||
assertThat(analysis).isNotNull(); |
||||
assertThat(analysis.getDescription()).isEqualTo( |
||||
"Reason: The running web application is of type servlet, but the dependent class is missing."); |
||||
assertThat(analysis.getAction()).isEqualTo( |
||||
"Check your application's dependencies on supported web servers or configuration of web application type."); |
||||
} |
||||
|
||||
@Test |
||||
void missingReactiveWebServerFactoryBeanFailure() { |
||||
ApplicationContextException failure = createFailure(new ReactiveWebServerApplicationContext()); |
||||
FailureAnalysis analysis = new MissingWebServerFactoryBeanFailureAnalyzer().analyze(failure); |
||||
assertThat(analysis).isNotNull(); |
||||
assertThat(analysis.getDescription()).isEqualTo( |
||||
"Reason: The running web application is of type reactive, but the dependent class is missing."); |
||||
assertThat(analysis.getAction()).isEqualTo( |
||||
"Check your application's dependencies on supported web servers or configuration of web application type."); |
||||
} |
||||
|
||||
private ApplicationContextException createFailure(ConfigurableApplicationContext context) { |
||||
try { |
||||
context.refresh(); |
||||
context.close(); |
||||
return null; |
||||
} |
||||
catch (ApplicationContextException ex) { |
||||
return ex; |
||||
} |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue