일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- springboot
- java 11
- No tests found for given includes
- OpenFeign
- yum install java
- java 여러개 버전
- no sources given
- Java 1.8
- java
- AWS CLI
- property or field 'jobparameters' cannot be found on object of type
- 스프링부트테스트
- LeetCode
- java 버전 변경
- JUnit
- querydsl no sources given
- mac os git error
- Medium
- springboottest
- aws
- easy
- log error
- parse
- el1008e
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- springbatch error
- error
- java 1.8 11
- maybe not public or not valid?
- java version
- Today
- Total
목록개발 (112)
쩨이엠 개발 블로그
lombok 사용하던 중 log4j로 변경하고 있는데 에러가 났다 확인해보니 spring boot 모듈 중에 logging dependency가 있어 대체되지 않았다 해서 build.gradle에 logging을 제외시키도록 아래의 configuration을 추가하였다 configurations { compile.exclude module: 'spring-boot-starter-logging' } 잘 돌아가는 것 확인!
개발 환경을 바꾸면서 나던 에러들을 하나하나 잡던중 갑자기 gradle build가 안되기 시작했다 $ gradle build -x test > Configure project : You are using one or more deprecated Asciidoctor Gradle plugin features. To help with migration run with --warning-mode=all. > Task :asciidoctor FAILED FAILURE: Build failed with an exception. * What went wrong: A problem was found with the configuration of task ':asciidoctor' (type 'AsciidoctorT..
sdkman도 못깔고 버전은 자꾸 1.8에 와있어서 찾아봤더니 또 다른 방법이 있었다 $ sudo alternatives --config java 이때 바꿀 번호를 적어주면 된다 Enter to keep the current selection[+], or type selection number: 2 그리고 다시 java -version을 해보면 잘 나오는 것을 확인할 수 있다 !
sdkman도 못깔고 버전은 자꾸 1.8에 와있어서 찾아봤더니 또 다른 방법이 있었다 $ sudo alternatives --config java 이때 바꿀 번호를 적어주면 된다 Enter to keep the current selection[+], or type selection number: 2 그리고 다시 java -version을 해보면 잘 나오는 것을 확인할 수 있다 !
기존 IDC에 있던 DB를 사용하려는데 create문이 돌아가질 않는다 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'JSON, sensor_level TINYINT, create_at DATETIME NOT NULL, PRIMARY KEY' at line 5 JSON 타입이 입력이 되지 않는 건 버전문제가 제일 유력하다고 해서 버전을 확인해보기로 했다 mysql 깔린 서버로 터미널로는 못들어가게 되어있어서 쿼리로 하는 방법을 찾아보았다 간단하다 > SELECT VERSION(); 입력해보면 버전이 보이는 것을 ..
R에서 package를 다운로드하려는데 MAC OS를 업그레이드 한 후 갑자기 error가 뜬다 R문제가 아니라 MAC OS 업글이 문제였다 xcode를 설치한 후 $ xcode-select --install 다시 install 해보면 ... 잘 다운로드 되는 것을 확인 할 수 있다
H2 커넥션 도중 에러가 났다 Error 내용 com.example.demo.MemberRepositoryTest > testMember() FAILED org.springframework.dao.InvalidDataAccessApiUsageException at MemberRepositoryTest.java:23 Caused by: javax.persistence.TransactionRequiredException at MemberRepositoryTest.java:23 2020-11-08 15:45:22.099 ERROR 38542 --- [ task-1] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Exception during pool initiali..
curl을 날렸을 때 Server : awselb/2.0 부분을 날리고 싶다 기존의 IDC에서는 server 내부로 들어가 server.xml 혹은 http.conf를 수정할 수 있었는데 AWS에서는 어떻게 하는지 찾아보았는데.. 결론은 아직 해결 방법이 없다고 한다 11/9 기준 업데이트 예정이나 아직까지는 방법없음
Front-End 작업 할 때 하나 바꾸고 재기동하고 하나 바꾸고 재기동하기 싫을 때 build.gradle에 org.springframework.boot:spring-boot-devtools 를 추가 해준다 dependencies{ ... implementation 'org.springframework.boot:spring-boot-devtools' ... } 끝
JPA를 배우던 중 Assist를 위해 Modules에 JPA를 추가하였다 Default JPA Provider를 Hibernate로 맞춰준 후 OK를 누르고 나니 소스에 빨간줄이 떠서 거슬린다 자꾸 data sources를 등록하라고한다 그럼 등록을 해보기로 한다 옆의 Database 탭에서 + -> H2를 선택한다 Host와 Port 등등의 정보를 입력한다 URL의 경우 application.yml에 입력한 정보안에 포트만 추가해서 쓰면 된다 User/Password도 마찬가지 application.yml 그리고 Test Connection을 눌렀을 때 초록색 체크가 나오면 연결이 완료된 것이다 Drivers의 H2를 눌러보면 URL template도 확인이 가능하다 내 경우는 Remote templ..