본문 바로가기

전체 글

(96)
스프링부트 로그파일 생성 @SpringBootApplication public class PetClinicApplication { private static final Logger logger = LoggerFactory.getLogger(PetClinicApplication.class); public static void main(String[] args) { logger.info("log 확인!"); SpringApplication.run(PetClinicApplication.class, args); } } ① 로그파일 생성 ① - ⒜ 프로젝트 main > resources > application.properties 아래에 spring.profiles.active=local logging.config=classpath:lo..
예제로 배우는 스프링 입문 (개정판)_백기선 강의 수업 정리 ① 인텔리제이 설치 https://www.jetbrains.com/ko-kr/idea/download/other.html → IntelliJ IDEA Ultimate 2020.1.4 - Windows x64 (exe) 으로 설치 진행 ② 깃(git)설치 https://git-scm.com/download/win Git - Downloading Package Download for Windows Click here to download the latest (2.38.1) 32-bit version of Git for Windows. This is the most recent maintained build. It was released 25 days ago, on 2022-10-18. Oth..
[MYSQL] Authentication method 'caching_sha2_password' not supported by any of the available plugins. , mysql can't connect to mysql server on 'localhost' (10061) MYSQL 설치시 위와 같은 에러가 발생 mysql can't connect to mysql server on 'localhost' (10061) : MYSQL 서비스가 실행되지 않아서 생긴 에러 내가 서비스가 실행되지 않았던 이유는 (Authentication method 'caching_sha2_password' not supported by any of the available plugins.) 해당 에러로 실행되지 않음. 버전 8에서 보안 이슈등으로 생긴 이슈 MYSQL my.ini 폴더에서 default_authentication_plugin=mysql_native_password 한줄 추가 (위 my.ini폴더에서 위 한줄 추가시 utf-8 로 저장시 이슈가 있어 anai로 변경 후 서비스 재..