본문 바로가기

오류해결방법4

[ mysql ] Java + eclipseEE DB 연결 시 오류 mysql 오류1 [오류내용] Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by s.. 2023. 6. 20.
[Access denied for user 'root'@'localhost' (using password: YES)] 스프링부트 application.properties <---> application.yml 파일 변경할 때의 오류 및 해결 방법 요즘은 .properties보다는 .yml을 많이 사용한다고하여 바꿔서 사용하던 도중 오류가 발생하였습니다. 오류 내용은 다음과 같았습니다. java.sql.SQLInvalidAuthorizationSpecException: (conn=459) Access denied for user 'root'@'localhost' (using password: YES) Error: Access denied for user 'root'@'localhost' (using password: YES) 다들 찾다보면 이 오류의 내용이 권한 문제니, 비밀번호가 틀렸냐니 하는 내용들이 많았다. 물론 맞다. 틀리다는 것은 아니지만 그 외의 다른 오류도 있었다. 간단하게 말하면 비밀번호 오류가 맞다. spring: datasourc.. 2023. 6. 5.
[ React ] 오류 해결 노트(2) - 정리에 서두가 없으니 'Ctrl + F'로 검색해서 볼 것. export 'Switch' (imported as 'Switch') >> 위의 오류일 경우, 버전이 업그레이드 되면서 지원하지 않아 오류가 발생함 Cannot read properties of null (reading 'useRef') Cannot read properties of null (reading 'useContext') >> 위의 두 오류는 정말 ''이네;;;;; TypeError: Cannot read properties of undefined (reading 'func') >> React랑 PropType 라이브러리가 분리되면서 생긴 문제입니다. 터미널에서 아래와 같이 입력합니다. npm install --save prop-types 위처럼 다운로드를 받고도 해결이 안된다면 다음과 같이 .. 2023. 4. 15.
[ React ] 오류 해결 노트(1) - 정리에 서두가 없으니 'Ctrl + F'로 검색해서 볼 것. // 리액트 프로젝트 만드는 법 터미널에 하위 명령어 입력 npm install -g create-react-app 입력하고 난 뒤 create-react-app 프로젝트명 입력했는데 * PSSecurityException 이라는 오류 발생 시 PSSecurityException : 최신버전이 아니라는 이유 CMD를 관리자 권한으로 켜서 1. npm install -g create-react-app 2. create-react-app management 입력하고 재 다운로드 * npm ERR! code ENOENT 위의 오류일 경우, create-react-app을 한 디렉토리로 이동하지 않은 채 npm run start 해서 그렇다. 해결 >> Terminal에서 create-react-app한 디렉토.. 2023. 4. 14.