일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- HashMap
- mysql 한국어
- mysql 다국어
- db utf8
- TreeMap
- Set
- xrdp
- 원격
- mstsc
- backtracking
- #spring boot admin
- CORS policy: No 'Access-Control-Allow-Origin'
- Hystrix Read time out
- ArrayList
- emqx
- mariadb 한국어
- java collection
- mariadb 다국어
- mqtt
- IOT
- message protocol
- 크로스도메인
- com.netflix.zuul.exception.ZuulException
- cors
- mosquitto
- #actuator
- #spring boot
- Access-Control-Allow-Origin
- #MSA
- com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- Today
- Total
목록IT_Spring (5)
miin29na
Spring Cloud Zuul 을 사용한 API Gateway 에서 Rest API 호출 시, response 의 Data 가 커서 response 응답이 오래 걸리는 문제 Rest API 호출 Error Log { "timestamp": "2020-02-18T10:16:18.507+0000", "status": 504, "error": "Gateway Timeout", "message": "com.netflix.zuul.exception.ZuulException: Hystrix Readed time out" } Zuule Server Error Log com.netflix.zuul.exception.ZuulException: at org.springframework.cloud.netflix.zuul...
Spring 기반 Server Rest API 를 javascript 로 테스트 도중 다음과 같은 에러가 발생(크롬) 로컬 개발 서버에서는 Success, 원격 배포 서버에서는 Fail. index.html:1 Access to XMLHttpRequest at 'http://원격지:8080/abc/' from origin 'null' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. index2.html:154 {readyState: 0, getResponseHeader: ƒ, getAllResponseHeaders: ƒ, setRequestHeader: ƒ..
MSA 를 구성하기 위해, config-service 를 구성 후에 이번 포스팅에서는, discovery service를 구성한다. Config-service 는 이전글을 참조한다. Spring Cloud Discovery Server (Eureka Server) 는 Micro service 들을 감시하고 관리하는 서비스이다. 이전 글에서, "Config-service, discovery-service, proxy-service, A-service, B-service 5개의 서버가 물리적으로 다른 서버에서 수행된다. "discovery-service : Eureka Server proxy-service, A-service, B-servie : Eureka Client -Micro service 들의 목록..
MSA 를 구성하기 위해, 다음과 같이 사용하였다. Spring Boot : 2.0.0.RELEASESpring Cloud : Greenwich.M2MavenMariaDB : 13.1 (view tool HeidiSQL9.4) Config-service, discovery-service, proxy-service, A-service, B-service 5개의 서버가 물리적으로 다른 서버에서 수행된다. (Test 용으로 나는local 에서 수행한다.) Spring Cloud Config Server 는 Config Client 들의 설정 파일을 한군데서 일괄적으로 관리하게 해준다. Config-service 가 discovery, proxy, A, B 의 설정을 관리한다. 이때 spring 에서는 관리 방..
Spring boot admin? - spring boot 는 actuator Endpoint 로 프로그램의 모니터링이 가능하다. (json 정보)- actuator 통해 UI 화 한, dashboard 기능으로 나온 것이 SpringBoot Admin 이다.- client 들의 서비스 UP/DOWN 상태 확인 가능- 디스크, 메모리 사용량, 가비지 컬렉터 등 상태 확인 - Running 중에 Log level 변경 가능 1. Spring boot admin Server Configuration 1.1 Pom.xml(주의 : 1.X 대 version 은 spring-boot-admin-server 이름으로 나온것 같다.) 12345 de.codecentric spring-boot-admin-starter..