일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GoingBus
- 카카오
- 스프링 빈
- 스프링 컨테이너
- 리눅스마스터 3과목
- 코딩테스트
- 반복문
- 연습문제
- 명령어
- Kotlin
- 리눅스마스터 1급 정리
- toCharArray
- 개발자 회고록
- Java
- 월간코드챌린지
- 백준 javascript
- map
- 고잉버스
- Linux
- Memoir
- 자바
- 자바스크립트 코딩의 기술
- 백준 java
- 코테
- 프로그래머스
- java 백준 1차원 배열
- 문자열
- JavaScript
- 리눅스
- 리눅스마스터1급
- Today
- Total
목록 IT/Error (16)
hoon's bLog
Error 발생 경로 새로운 프로젝트를 하다보면 구성이나 설정이 조금씩 바뀌면서, 이따금 구동하면서 다음과 같은 에러가 발생한다. 이번 에러는 저번 게시물과 똑같은 에러이다. 이번엔 application.properties와 application.yml을 정상적으로 입력했음에도 발생한 에러이다. Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure ..
Error 발생 경로 새로운 프로젝트를 하다보면 구성이나 설정이 조금씩 바뀌면서, 이따금 구동하면서 다음과 같은 에러가 발생한다. Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured..
Error 발생 경로 최근에 회사에서 맥북 포맷을 했는데, homebrew 설치 후, 다음과 같은 에러가 발생했다. zsh: command not found: brew 윈도우든, 맥이든, 항상 초기 setting은 귀찮고 오래 걸린다. 특히 맥은 윈도우에 비해 사용기간이 적었던 터라, 문제를 해결하는데 늘 오래 걸린다ㅠㅠ 역시 포맷을 하고, 기본세팅을 위해 homebrew를 까는데 엄청난 노가다를 했다.....(내 settingㅠㅠ) 이 오류 메시지는 2020년 11월 이후 애플이 처음으로 공개한 M1 칩 이후에 생기는 오류로, Homebrew가 기존의 경로인 /usr/local/... 가 아닌 /opt/homebrew/ 로 설정되어 있어서 생기는 에러!! 해결 우선 ~/(기본 cd 명령어만 입력했을 때..
Error 발생 경로 Spring Build 후 기동 중에, 다음과 같은 Error가 발생!! Error querying database. Cause: java.lang.NumberFormatException: For input string: “Y” MyBatis 사용 시 위와 같은 에러가 발생하는 경우가 있다. 원인을 살펴보면, 다음과 같은 문자열 비교 구문에서 에러가 발생하는 것을 확인할 수 있다. AND COLUMN = #{value} 아니 'Y'가 있는데?? 왜 이런 데서 에러가 날까?! 분명 문자열 비교 구문인데 NumberFormatException이 발생하는 상황이다. 해결 위 현상은 myBatis 문제는 아니고 OGNL 문제이다. OGNL(Object-Graph Navigation Lang..
Error 발생 경로 Spring Build 후 기동 중에, 다음과 같은 Error가 발생!! org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration: Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'WeatherController..
Error 발생 경로 회사에서 기상청 OpenAPI를 붙여 코딩하는 도중, 다음과 같은 Error가 발생!!(OS환경 : Mac OS) Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:387) at sun.security.validator.PKIXValidator.engineVal..
Spring build 하면서 발생한 Error... org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration: Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'WeatherController' method ...중략... to {[..
SpringBoot로 프로젝트를 Build 하면서 다음과 같은 Error가 발생했다!!! Error는 다음과 같다! java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.slf4j.impl.Log4jLoggerFactory loaded from jar:file:/Users/user/workspace/aim/server/build/libs/aim-0.0.1-SNAPSHOT.jar!/BOOT-INF/lib/slf4j-log4j12-1.7.30.j..