일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- java 1.8 11
- JUnit
- java
- springboottest
- el1008e
- Medium
- no sources given
- error
- java 11
- mac os git error
- No tests found for given includes
- querydsl no sources given
- springbatch error
- parse
- Java 1.8
- AWS CLI
- springboot
- OpenFeign
- maybe not public or not valid?
- java 여러개 버전
- 스프링부트테스트
- easy
- java 버전 변경
- java version
- property or field 'jobparameters' cannot be found on object of type
- yum install java
- log error
- aws
- LeetCode
- Today
- Total
목록개발 (112)
쩨이엠 개발 블로그
계속 java를 1.8버전을 쓰다가 11버전도 써야하는 상황이 발생했다 java 버전 관리를 좀더 쉽게 할 수 있는걸 찾던중 sdkman을 발견했다 sdkman 설치 $ curl -s "https://get.sdkman.io" | bash -+syyyyyyys: `/yho:` -yd. `/yh/` +m. .oho. hy .` .sh/` :N` `-/o` `+dyyo:. .yh:` `M- `-/osysoym :hs` `-+sys: hhyssssssssy+ .sh:` `N: ms/-`` yy.yh- -hy. `.N-````````+N. `od/` `N- -/oM- ddd+` `sd: hNNm -N: :do` .M. dMMM- `ms. /d+` `NMMs `do .yy- :N` ```mMMM. - -hy. /..
AWS ECS jib빌드 도중 에러가 났다 $ AWS_PROFILE=prod ./gradlew -Pprod clean jib -x test 기본 클래스 org.gradle.wrapper.GradleWrapperMain을 찾거나로드 할 수 없습니다. 계속 해왔던 gradle 빌드인데 갑자기 안되어서 살펴보니 gradle/wrapper 안에 gradle-wrapper.jar가 없어서 생긴 일이었다 $ gradle wrapper gradle wrapper 명령어 후 gradle-wrapper.jar 파일이 생성된것을 확인한 후 재 빌드하면 완료
로컬에서 EC2로 붙으려고 시도했는데 에러가 터졌다 $ ssh -i xxx.pem ec2-user@xx.xx.xx.xx Warning: Permanently added 'xx.xx.xx.xx' (ECDSA) to the list of known hosts. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Permissions 0644 for 'xxx.pem' are too open. It is required that your private key files are..
Gradle build중 오류가 났다 에러내용 : * What went wrong: Execution failed for task ':iot_app:compileJava'. > Could not resolve all files for configuration ':iot_app:compileClasspath'. > Could not resolve com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.6.7. Required by: project :iot_app > com.amazonaws:aws-java-sdk-core:1.11.734 > Could not resolve com.fasterxml.jackson.dataformat:jackson-datafo..
JPA 및 h2 공부 하던중 Persistentce.xml에서 ddl auto를 활성화 했을 때 테이블이 지워지지 않거나 존재한다 등등의 에러를 발생시켰다 확인해보니 현재 버전인 1.4.200에서 나는 에러로 199로 다운그레이드시 에러가 나지 않았다 아직 릴리즈 버전은 199인가보다 pom.xml에서 버전을 1.4.199로 변경하면 끝 com.h2database h2 1.4.199
잘 실행하던 h2 console이 갑자기 열리지 않으며 에러를 뱉었다 $ ./h2.sh Error: Could not find or load main class org.h2.tools.Console Caused by: java.lang.ClassNotFoundException: org.h2.tools.Console 확인해보니 intellij에서 library만 비활성화 시킨다는걸 jar 파일을 삭제해버려서 에러가 났다 저런 에러를 뱉을 때엔 jar 파일이 제대로 있는지 확인해볼것 .. ㅎㅎ
node 코드가 변경 되었을 때마다 서버 재시작 하기 귀찮을 때 $ node app.ja 대신 쓰는 nodemon을 사용해보겠다 일단 install이 필요하다 $ sudo npm install nodemon -g /usr/local/bin/nodemon -> /usr/local/lib/node_modules/nodemon/bin/nodemon.js > nodemon@2.0.4 postinstall /usr/local/lib/node_modules/nodemon > node bin/postinstall || exit 0 Love nodemon? You can now support the project via the open collective: > https://opencollective.com/nodem..
Redis 란 Key-Value 형태를 띄고 있는 In Memory 기반의 NoSQL DBMS이다. 보통 캐싱 / 세션관리 등으로 쓰고 있는데 내 경우는 임시데이터를 잠시 저장하고 그걸 빠르게 가져오기 위해 사용하였다. 의존성 환경 Spring boot 2.2.5 RELEASE Spring Boot Data Redis 2.2.5 RELEASE Java 11 (8도 상관없음) plugins { id 'org.springframework.boot' version '2.2.5.RELEASE' id 'io.spring.dependency-management' version '1.0.9.RELEASE' id 'java' } sourceCompatibility = '11' repositories { mavenCen..
기본만 있었던 dependency에 redis를 추가해야할 일이 생겼다 build.gradle 에 추가해준다 dependencies { ... implementation 'org.springframework.boot:spring-boot-starter-data-redis-reactive' implementation 'org.springframework.session:spring-session-data-redis' ... } 추가해 준 후 version이 없다는 에러가 났다 그 위에 plugins을 추가해준다 plugins { id 'org.springframework.boot' version '2.3.3.RELEASE' } dependencies { ... implementation 'org.spring..
요즘 센서 데이터 입수하는 게이트웨이를 만들고 있는데 가끔씩 연결이 안되어있는 센서를 다시 연결하면 이제까지 보내지 못했던 데이터를 한방에 보내준다 ^^ 고맙기도하지.. 유실은 안되겠네.. 하고 로그를 보고있는데 로그가 폭발했다 갑자기 죽죽 올라가길래 뭐지 싶어서 봤더니 ㅎㅎ Exception 발생! com.amazonaws.services.iot.client.AWSIotException: TOO_MANY_REQUESTS com.amazonaws.services.iot.client.core.AwsIotCompletion.get(AwsIotCompletion.java:213) com.amazonaws.services.iot.client.shadow.AwsIotDeviceCommand.get(AwsIotDe..