일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 낭독
- 백엔드
- 매일매일쓰자허무하지않게
- Til
- 공부기록
- DRF
- 해커스
- 컴공과
- 기록
- Python
- django
- 삽질일기
- 다시도전
- Flutter
- 장고
- 파이썬
- 가보자고
- to all the errors i loved
- djangorestframework
- opencv
- 대학생
- 1학기
- 암영
- SUNLOG
- 2024 1학기 기말 파이썬 프로젝트
- 라즈베리파이
- UOPEOPELE
- 불공단스터디
- 불공단
- 불공단_스터디
- Today
- Total
목록Develop/To All The Errors I've Loved Before (11)
기술해록본
java.lang.IllegalArgumentException: rawPassword cannot be nullat org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder.encode - 처음에는 BCryptPasswordEncoder 관련 @Autowired 문제라고 생각 했으나 블로그를 참고해보니JSON BODY로 보내면 controller 에서 받을 때 인지를 할수 있게 @RequestBody 어노테이션을 작성했어야 하는데 붙이지 않아서 발생한 문제이다. - 여기서private static final Logger log = LoggerFactory.getLogger(userController.class); @Autowired ..
https://velog.io/@thsruddl77/Basic-attribute-type-should-not-be-a-container coordinates를 썼는데 List [에러] Basic' attribute type should not be a container2024.01.211차 종합 프로젝트환경 - 스프링부트 3.2.1, 자바 JDK21'Basic' attribute type should not be a containerPlace 엔티티에 List coordinates를 썼는데 Listvelog.io
https://nx006.tistory.com/8 [Flutter] Error: Dart library 'dart:ui' is not available on this platform. 해결 방법처음 플러터를 시작하였을 때 다음과 같은 에러가 뜨는 경우가 있다. Error: Dart library 'dart:ui' is not available on this platform. import 'dart:ui' show lerpDouble; ^ 이는 플러터 프로젝트를 다트 프로젝트 컴파일nx006.tistory.com

Error: Dart library 'dart:ui' is not available on this platform.import 'dart:ui' as ui show Canvas, Paint, Path, lerpDouble; ^Context: The unavailable library 'dart:ui' is imported through these packages: package:my_app => package:flutter => dart:ui ...import 'dart:ui' show lerpDouble; 문제상황dart 기초 문법을 익히려고 print를 실행하려고 하는 와중에 발생했던 상황.+ dart:ui 문제가 해결되면 no device 문구가 뜨면서 종료되고 콘솔에만 출력을..
Visual Studio - develop Windows apps (Visual Studio Community 2022 17.7.3) Visual Studio - develop Windows apps (Visual Studio Community 2022 17.7.3) X Visual Studio is missing necessary components. Please rerun the Visual Studio installer for the "Desktop development with C++" workload, and include these components: MSVC v142 - VS 2019 C++ x64/x86 build tools - If there are mult..

앱 빌드 중에 발생한 에러 2 * What went wrong: Error:Execution failed for task ':app:processDebugGoogleServices'. >; No matching client found for package name 'com.example.exampleapp'https://darkness-blooms-sun.tistory.com/42 Cannot set the value of read-only property 'signingConfigs' for extension 'android' of type com.android.build.gradle.internal.dsl.BaseAppModuleE" data-og-host="darkness-blooms-sun.tis..

앱 build 할때 발생했던 에러* What went wrong: A problem occurred evaluating project ':app'. > Cannot set the value of read-only property 'signingConfigs' for extension 'android' of type com.android.build.gradle.internal.dsl.BaseAppModuleExtension.해결방법1. gemini 의 도움을 받음 : signingConfigs 는 build.gradles 에 딱 하나만 설정해야하는데 중복 되어있을 수 있는 가능성이 있음 결론 : signingConfigs 는 하나만 있고 문제가 없음. 2. 다른 쪽으로 눈을 돌려 뭐가 잘못 되었는지 확인 ..
FirebaseCommandException: An error occured on the Firebase CLI when attempting to run a command. Firebase 버전을 업데이트 하고 cli에서 재인증을 거쳤는데도 같은 에러가 떴을때 해결방법 npm 명령을 사용하여 Firebase CLI를 설치해야 해야한다고 한다!npm install -g firebase-tools 참고 자료https://jpointofviewntoe.tistory.com/178 [Flutter] 우당탕탕 Firebase 설정 및 에러 해결기1. 프로젝트 루트에 아래 명령어를 입력하여 플러그인 설치 flutter pub add firebase_core 2. Firebase 서비스를 사용하려면 FlutterFi..