목록SpringBoot/블로그만들기PJ (12)
Coding Note
스터디 2일 차 2022.03.17 1. yaml 이란 데이터 전송 파일 기존 사용했던 web.xml, root-context.xml, servlet-context.xml의 합본이라고 생각하면 될 거 같다! https://www.inflearn.com/questions/16184 yaml파일 이란 무엇인가요 - 인프런 | 질문 & 답변 안녕하세요 강사님 너무 질문이 많아서 죄송합니다. yaml파일 이라는 단어를 요 근래 많이 듣고 있는데 정확인 무슨 파일인가요 검색해 보지도 않고 무조건 질문을 드리는것 같아서 죄송하지만 www.inflearn.com jpa: open-in-view: true hibernate: ddl-auto: create naming: physical-strategy: org.hibe..
1. Git git - 프젝 관리, 동기화 작업 영역 - 인덱스(Index) - 헤드(Head) - 3가지 박스를 동기화시키는 작업이라고 생각하면 된다. git inti : 저장소 생성 git add . : 파일 원격 저장소에 업로드 git commit -m "메시지" : 깃 저장소에 업로드 git status : 깃 상태 확인 git remote add origin 저장소 : 깃 저장소 연결 git remote -v : 깃 연결 상태 확인 git push origin main : 메인 브랜치에 파일 업로드 git pull origin main : 업로드된 내용 가져오기 git checkout -b 브랜치명 : 브랜치 생성 git push origin 브랜치명 : 선..
1. MySQL 한글 설정 MySQL> MySQL Server 5.7 > my.ini 파일에 아래 코드 추가하고 재시작하기 [client] default-character-set=utf8 [mysql] default-character-set=utf8 [mysqld] collation-server = utf8_unicode_ci init-connect='SET NAMES utf8' init_connect='SET collation_connection = utf8_general_ci' character-set-server=utf8 2. 사용자 생성, 권한 부여, 한글 설정 확인 3. MySQL 프로젝트 연결 src/main/resources/application.yml 위 폴더에 아래 코드 추가하기 가린 부..
메타코딩 - SpringBoot - 나만의 블로그 만들기 기본적인 프로그램이 설치된 상태라 초반은 수월했다. 1강부터 17강까지 진행한 내용을 간략히 정리하고자 한다! Oracle JDK 1.8 설치 이미 설치되어있어 패스 MySQL 5.7 설치 기존에 deaver, sqldeveloper, dataGrip을 사용했다. https://dev.mysql.com/downloads/windows/installer/5.7.html MySQL :: Download MySQL Installer Select Operating System: Select Operating System… Microsoft Windows Select OS Version: All Windows (x86, 32-bit) Windows (x86..