소개
게시글
질문&답변
2022.03.19
정답은 맞게 나오는데 채점은 오답이라 해서 잘못된 곳을 모르겠습니다.
버그였나보네요 새로고침하니까 정답이라고 표시되었네요
- 0
- 1
- 214
질문&답변
2022.02.11
actuator status: 404
해결했습니다. SwaggerConfig.java 안에 아래 bean 을 설정해 주면 됩니다. 기타 궁금한 사항은 https://github.com/springfox/springfox/issues/3462 여기 들어가면 있습니다. @Bean public WebMvcEndpointHandlerMapping webEndpointServletHandlerMapping(WebEndpointsSupplier webEndpointsSupplier, ServletEndpointsSupplier servletEndpointsSupplier, ControllerEndpointsSupplier controllerEndpointsSupplier, EndpointMediaTypes endpointMediaTypes, CorsEndpointProperties corsProperties, WebEndpointProperties webEndpointProperties, Environment environment) { List> allEndpoints = new ArrayList(); Collection webEndpoints = webEndpointsSupplier.getEndpoints(); allEndpoints.addAll(webEndpoints); allEndpoints.addAll(servletEndpointsSupplier.getEndpoints()); allEndpoints.addAll(controllerEndpointsSupplier.getEndpoints()); String basePath = webEndpointProperties.getBasePath(); EndpointMapping endpointMapping = new EndpointMapping(basePath); boolean shouldRegisterLinksMapping = this.shouldRegisterLinksMapping(webEndpointProperties, environment, basePath); return new WebMvcEndpointHandlerMapping(endpointMapping, webEndpoints, endpointMediaTypes, corsProperties.toCorsConfiguration(), new EndpointLinksResolver(allEndpoints, basePath), shouldRegisterLinksMapping, null); } private boolean shouldRegisterLinksMapping(WebEndpointProperties webEndpointProperties, Environment environment, String basePath) { return webEndpointProperties.getDiscovery().isEnabled() && (StringUtils.hasText(basePath) || ManagementPortType.get(environment).equals(ManagementPortType.DIFFERENT)); }
- 0
- 2
- 1.9K
질문&답변
2021.11.09
aws 명령어 2번째
1. 네 첨부파일을 받아서 압축을 풀고 돌렸습니다. 2. window.putty 에서 어떻게 돌려야 하는지 모르겠습니다.
- 0
- 4
- 332
질문&답변
2021.09.13
ec2 실습
해결
- 0
- 6
- 515
질문&답변
2021.09.12
ec2 실습
(사진) 그리고 인스턴스의 인바운드 아웃바운드 규칙입니다. 아파치 ON 하고 index.html 은 만들지 않고 한번 인스턴스에서 public 주소를 통해 시도를 했지만 TIMED_OUT 이 발생했습니다.
- 0
- 6
- 515