전체 글
- io.jsonwebtoken.io.DecodingException: Illegal base64 character: '.' 2024.01.31
- mac port kill 2024.01.31
- 04. spring cloud config 2024.01.18
- gateway 2024.01.17
- h2 database 2024.01.16
- 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library 2024.01.15
- 03. API Gateway Service 2024.01.15
- 02. user service 2024.01.15
- 01. Service Discovery 2024.01.15
- pycharm pytest error 2023.11.16
io.jsonwebtoken.io.DecodingException: Illegal base64 character: '.'
mac port kill
lsof -i :8080
kill {PID}
'연구개발 > Etc..' 카테고리의 다른 글
[Docker] 생성 및 실행 (0) | 2018.07.04 |
---|---|
운영체제 개론 (0) | 2017.05.29 |
지표 관련 용어 (0) | 2016.08.22 |
unity key (0) | 2016.05.07 |
RAID 1+0 과 0+1의 차이점 (0) | 2011.07.11 |
04. spring cloud config
config server
yml 설정
dev, beta, prod
spring cloud bus 사용 - mq 사용하면 편함
'연구개발 > MSA' 카테고리의 다른 글
gateway (0) | 2024.01.17 |
---|---|
h2 database (0) | 2024.01.16 |
'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library (0) | 2024.01.15 |
03. API Gateway Service (0) | 2024.01.15 |
02. user service (0) | 2024.01.15 |
gateway
gateway 에서 당연히 url filter 설정 & token 검증, 등등.. 진
'연구개발 > MSA' 카테고리의 다른 글
04. spring cloud config (0) | 2024.01.18 |
---|---|
h2 database (0) | 2024.01.16 |
'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library (0) | 2024.01.15 |
03. API Gateway Service (0) | 2024.01.15 |
02. user service (0) | 2024.01.15 |
h2 database
보안 뭐시기 하면서 연결이 안된다면..
entity class 하나 맹글어주고 application.yml 에 jpa 설정 추가해주면 해결 끝
application.yml
jpa:
hibernate:
ddl-auto: create-drop
show-sql: true
User.class
@Entity
public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
}
'연구개발 > MSA' 카테고리의 다른 글
04. spring cloud config (0) | 2024.01.18 |
---|---|
gateway (0) | 2024.01.17 |
'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library (0) | 2024.01.15 |
03. API Gateway Service (0) | 2024.01.15 |
02. user service (0) | 2024.01.15 |
'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library
gradle
implementation 'io.netty:netty-resolver-dns-native-macos:4.1.104.Final:osx-aarch_64'
maven
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver-dns-native-macos</artifactId>
<version>4.1.104.Final</version>
<classifier>osx-aarch_64</classifier>
</dependency>
'연구개발 > MSA' 카테고리의 다른 글
gateway (0) | 2024.01.17 |
---|---|
h2 database (0) | 2024.01.16 |
03. API Gateway Service (0) | 2024.01.15 |
02. user service (0) | 2024.01.15 |
01. Service Discovery (0) | 2024.01.15 |
03. API Gateway Service
인증, 권한 부여
서비스 검색 통합
응답 캐싱
정책, 회로 차단기 & Qos 다시 시도
속도 제한
부하 분산
로깅, 추적, 상관 관계
헤더, 쿼리 문자열 및 청구 변환
IP 허용 목록 추가 (whitelist)
'연구개발 > MSA' 카테고리의 다른 글
gateway (0) | 2024.01.17 |
---|---|
h2 database (0) | 2024.01.16 |
'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library (0) | 2024.01.15 |
02. user service (0) | 2024.01.15 |
01. Service Discovery (0) | 2024.01.15 |
02. user service
eureka 에 user service 등록
1. intellij로 실행
vm option 에서 -Dserver.port=포트
2. mvn으로 실행
mvn spring-boot:run -Dspring-boot.run.jvmArguments='-Dserver.port=포트'
3. command로 실행
java -jar -Dserver.port=포트 ./target/user-service-0.0.1-SNAPSHOT.jar
'연구개발 > MSA' 카테고리의 다른 글
gateway (0) | 2024.01.17 |
---|---|
h2 database (0) | 2024.01.16 |
'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library (0) | 2024.01.15 |
03. API Gateway Service (0) | 2024.01.15 |
01. Service Discovery (0) | 2024.01.15 |
01. Service Discovery
서비스 등록
Load Balance
서비스 구성확인 (서비스 목록 확인)
'연구개발 > MSA' 카테고리의 다른 글
gateway (0) | 2024.01.17 |
---|---|
h2 database (0) | 2024.01.16 |
'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library (0) | 2024.01.15 |
03. API Gateway Service (0) | 2024.01.15 |
02. user service (0) | 2024.01.15 |
pycharm pytest error
python -m pytest
'Program > Python' 카테고리의 다른 글
Dataframe shift (0) | 2022.12.23 |
---|---|
graphviz 설치 후 오류 (Anaconda) (0) | 2018.08.10 |
ubuntu Jupyter (0) | 2018.07.13 |
numpy axis (0) | 2018.07.13 |
docker 한글설정 (0) | 2018.07.07 |