SpringBoot8 [Spring boot] JPA & MariaDB 테이블생성 Application.properties server.port=8181 // 서버 포트 설정(기본값 8080) => 내장 톰캣이기때문 spring.datasource.driver-class-name=org.mariadb.jdbc.Driver // mariadb 부분만 다른걸로 변경하면 연동 가능 spring.datasource.url=jdbc:mariadb://localhost:3306/bootex // bootex DB에 연동 spring.datasource.username=bootuser // 아이디 spring.datasource.password=bootuser // 패스워드 spring.jpa.hibernate.ddl-auto=update //프로젝트 실행시 자동으로 DDL(create, alte.. 2022. 6. 10. 스프링 부트 - 2) intellij와 github 연동 1. GitHub 로그인 windows : Ctrl + Shift + A Mac : Command + Shift + A 누르면 위와 같은 화면이 출력된다. 검색창에 Share Project on GitHub 입력하고 검색 기존에 연동이 되어있는 상태면 위 화면처럼 뜨고 연동이 안됐으면 GitHub 로그인화면이 출력된다. 로그인 후 Share 클릭 .idea 와 gitignore 를 제외시키고 나머지 add시켜준다. 2. ignore 설치 및 세팅 1) Command + shift + a > action > plugin 2) Marketplace 선택 > .ignore 설치 > 재시작 3) ignore 파일 생성 - 생성한 프로젝트 우클릭 > new > .ignore파일 생성 파일에 다음과 같이 입력해줍니.. 2021. 12. 24. 이전 1 2 다음