스프링 부트 테스트가 실패하고 "Servlet Web Server Factory bean이 없어 Servlet Web Server Application Context를 시작할 수 없습니다.
테스트 클래스:-
@RunWith(SpringRunner.class)
@SpringBootTest(classes = { WebsocketSourceConfiguration.class,
WebSocketSourceIntegrationTests.class }, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, properties = {
"websocket.path=/some_websocket_path", "websocket.allowedOrigins=*",
"spring.cloud.stream.default-binder=kafka" })
public class WebSocketSourceIntegrationTests {
private String port = "8080";
@Test
public void testWebSocketStreamSource() throws IOException, InterruptedException {
StandardWebSocketClient webSocketClient = new StandardWebSocketClient();
ClientWebSocketContainer clientWebSocketContainer = new ClientWebSocketContainer(webSocketClient,
"ws://localhost:" + port + "/some_websocket_path");
clientWebSocketContainer.start();
WebSocketSession session = clientWebSocketContainer.getSession(null);
session.sendMessage(new TextMessage("foo"));
System.out.println("Done****************************************************");
}
}
나는 여기서 같은 문제를 보았지만 아무것도 도움이 되지 않았다.제가 뭘 놓쳤는지 알 수 있을까요?
있습니다spring-boot-starter-tomcat
종속성 계층에서 컴파일 시간 종속성으로 사용됩니다.
이 메시지는 다음과 같습니다.ApplicationContext에서 적어도1개의 ServletWebServerFactory bean을 설정해야 합니다.따라서 이미 spring-boot-starter-tomcat이 있는 경우 해당 bean을 자동 설정하거나 수동으로 설정해야 합니다.
따라서 테스트에서 애플리케이션을 로드할 구성 클래스는 = { WebsocketSourceConfiguration.class, WebSocketSourceIntegration 두 개뿐입니다.Tests.class }, 그리고 적어도 이러한 클래스 중 하나에는 원하는 ServletWebServerFactory 인스턴스를 반환하는 @Bean 메서드가 있어야 합니다.
*솔루션*
컨피규레이션클래스 내의 모든 콩을 로드해 주세요.
WebsocketSourceConfiguration {
@Bean
ServletWebServerFactory servletWebServerFactory(){
return new TomcatServletWebServerFactory();
}
}
또는 AutoConfiguration을 이노블로 하여 이러한 콩의 클래스 패스스캔 및 자동설정을 수행합니다.
@EnableAutoConfiguration
WebsocketSourceConfiguration
통합 테스트 클래스에서도 실행할 수 있습니다.
@EnableAutoConfiguration
WebSocketSourceIntegrationTests
상세한 것에 대하여는, Spring Boot 를 참조해 주세요.주석 문서 테스트 https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/test/context/SpringBootTest.html
2.0.5로 설정합니다.릴리스 다음과 같은 문제가 발생하였습니다.
package radon;
..
@SpringBootApplication
public class Initializer {
public static void main(String[] args) {
SpringApplication.run(Config.class, args);
}
}
package radon.app.config;
@Configuration
@ComponentScan({ "radon.app" })
public class Config {
..
}
Initializer 패키지 변경radon
로.radon.app
문제를 해결했습니다.
왜냐하면spring
에서 속성 파일을 로드할 수 없습니다.runtime
, 사용하고 있었습니다.spring
(프로그램 또는 VM) 인수를 제공하지 않았습니다.runtime( java -jar application.jar)
프로파일의 vm 인수를 추가하면 문제가 해결되었습니다.
java -jar -Dspring.profiles.active=dev application.jar
또는 프로그램 인수를 사용합니다.
java -jar application.jar --spring.profiles.active=prod --spring.config.location=c:\config
웹 응용 프로그램의 경우 확장*SpringBootServletInitializer*
주 수업 시간에
@SpringBootApplication
public class YourAppliationName extends SpringBootServletInitializer{
public static void main(String[] args) {
SpringApplication.run(YourAppliationName.class, args);
}
}
언급URL : https://stackoverflow.com/questions/48264118/spring-boot-test-fails-saying-unable-to-start-servletwebserverapplicationcontex
'programing' 카테고리의 다른 글
Java에서 JSON Collection 개체가 비어 있는지 테스트하는 방법 (0) | 2023.03.26 |
---|---|
XMLHttpRequest, jQuery.ajax, jQuery.post, jQuery.get의 차이점은 무엇입니까? (0) | 2023.03.26 |
Swift에서 JWT(JSON Web 토큰) 토큰을 디코딩하려면 어떻게 해야 하나요? (0) | 2023.03.26 |
WooCommerce:가격을 무시하고 제품을 장바구니에 추가하시겠습니까? (0) | 2023.03.26 |
config()에 $location을 삽입할 수 없는 이유는 무엇입니까? (0) | 2023.03.26 |