일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- react
- Spring Boot
- Java
- JW생명과학
- Real MySQL
- 철강
- Effective Java
- SQS
- 건기식
- 2020포트폴리오
- 트러블슈팅
- 산업리포트
- 자바
- 유진기업
- 코틀린 기본
- 삼일씨엔에스
- AWS SQS 들이파기
- Kotlin
- 현대건설기계
- spring-cloud-aws
- 기업분석
- AWS
- Vue.js
- MySQL
- 건설기계
- 디스플레이
- 투자에 대한 생각
- 포트폴리오
- 하워드 막스
- 산업분석
- Today
- 4
- Total
- 322,566
목록개발 공부 기록하기/04. Spring & Spring Boot (10)
공부하는 개발자
회사에서 사용하는 프로젝트의 언어 (Kotlin), 프레임워크 (Spring Boot) 최신화를 하려고 하는 중인데 Unable to find method ''java.lang.String org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper.getKotlinPluginVersion()'' 'java.lang.String org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper.getKotlinPluginVersion()' Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) Re-downloa..

안녕하세요! 공부하는 개발자 입니다! 이번 포스트에서는 Kotlin, Spring Boot, Querdsl을 이용하여 gradle multi porject를 구성하는 방법에 대해 알아보겠습니다. 본 포스트를 작성하게 된 계기는 최근 이직한 회사의 프로젝트 구성이 git repository N개와 git submodule을 사용한 형태였기 때문인데요, 따라서 gradle multi module의 본격적인 구성 방법을 살펴보기에 앞서, 한 시스템 내에서 사용되는 모듈을 관리할 수 있는 또 다른 방법인 git repository N 개 + git submodule 에 대해서 간단히 설명드려 보겠습니다 🙂 Git repository N개 + Git submodule 방식 사실 생각해보면 꼭 gradle mult..

spring-cloud-aws 를 사용할때 이런 에러가 날 수 있다. com.amazonaws.SdkClientException: Unable to load AWS credentials from any provider in the chain: [com.amazonaws.auth.EC2ContainerCredentialsProviderWrapper@64c19877: Failed to connect to service endpoint: , com.amazonaws.auth.profile.ProfileCredentialsProvider@7f570ac4: profile file cannot be null 이 경우, credeitnals를 넣어주어야 하고 몇 가지 해결책이 있다. 1. Access Key 발급받아..

spring-cloud-aws를 이용한 프로젝트를 로컬에서 실행시킬때 Application 자체는 잘 뜨는데 이런 Warning이 날 때가 있다. com.amazonaws.SdkClientException: Failed to connect to service endpoint Caused by: java.net.SocketTimeoutException: connect timed out 이런 Warning이 나는 코드를 살펴보면, public final class AwsCloudEnvironmentCheckUtils { private static final String EC2_METADATA_ROOT = "/latest/meta-data"; private static Boolean isCloudEnviron..

build.gradle에 spring-cloud-aws-autoconfigure 을 설정하고 로컬에서 실행시키면 다음과 같은 에러가 나올 수 있다. (줄바꿈 추가) Caused by: java.lang.IllegalStateException: There is no EC2 meta data available, because the application is not running in the EC2 environment. Region detection is only possible if the application is running on a EC2 instance 에러를 해석해보면, application이 돌아가는 환경이 EC2가 아니라 meta data가 없다는 뜻이다. 오호.. region 정보를 추가..

Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.cloud.aws.core.env.stack.config.StackNameProvider]: Factory method 'autoDetectingStackNameProvider' threw exception; nested exception is java.lang.IllegalArgumentException: No valid instance id defined Spring Cloud AWS 의 auto configure를 이용할때 위와 같은 에러가 날 수 있다. 이럴때는.. cloud: aws: stack: auto..