전자정부프레임워크의 Boot Templat Project 로 프로젝트 실행 오류
- 작성자 :
- D*
- 작성일 :
- 2023-04-21 14:04:27
- 조회수 :
- 1,028
- 구분 :
- 개발환경 / 4.1
- 진행상태 :
- 완료
Q
몇일전 107차 세미나를 듣고 Spring Boot 와 React 시연까지 본 후
테스트를 해보려고 개발환경 4.1을 다운 받았습니다. 스프링부트는 처음이라
시연 보여주신대로 Simple Homepage 를 설치해보고 실행을 하였습니다.
그런데 아래와 같이 Did not match 들이 많이 나오네요.
Simple Homepage 설치만 하고 바로 실행을 한건데 실행전에 다른 먼가를 해야하나요?
WebServiceTemplateAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition)
WebServicesAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)
WebSessionIdResolverAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition)
WebSocketMessagingAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)
WebSocketReactiveAutoConfiguration:
Did not match:
- @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
테스트를 해보려고 개발환경 4.1을 다운 받았습니다. 스프링부트는 처음이라
시연 보여주신대로 Simple Homepage 를 설치해보고 실행을 하였습니다.
그런데 아래와 같이 Did not match 들이 많이 나오네요.
Simple Homepage 설치만 하고 바로 실행을 한건데 실행전에 다른 먼가를 해야하나요?
WebServiceTemplateAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition)
WebServicesAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)
WebSessionIdResolverAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition)
WebSocketMessagingAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)
WebSocketReactiveAutoConfiguration:
Did not match:
- @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
환경정보
-
- OS 정보 : Windows
- 표준프레임워크 버전 : 4.1
- JDK(JRE) 정보 : 11
- WAS 정보 : Tomcat 8.5
- DB 정보 :
- 기타 환경 정보 :
A
안녕하세요.
표준프레임워크센터입니다.
스프링 부트를 이용해서 프로젝트를 기동하면
spirng-boot-starter 에서 클래스패스 내의 클래스들을
프로젝트에 필요한지 판별하는데
이때 프로젝트에 필요한 클래스라면 matched,
필요하지 않은 클래스는 did not match로
표기하여 리포트 형태로 출력합니다.
이 부분은 로깅 레벨을 변경하여
출력을 비활성화 시킬 수 있습니다.
감사합니다.
표준프레임워크센터입니다.
스프링 부트를 이용해서 프로젝트를 기동하면
spirng-boot-starter 에서 클래스패스 내의 클래스들을
프로젝트에 필요한지 판별하는데
이때 프로젝트에 필요한 클래스라면 matched,
필요하지 않은 클래스는 did not match로
표기하여 리포트 형태로 출력합니다.
이 부분은 로깅 레벨을 변경하여
출력을 비활성화 시킬 수 있습니다.
감사합니다.