Dot Programming/Spring Clone
2021. 4. 28.
[스프링 웹앱 프로젝트 #42] PostgreSQL 설치 및 Spring 연동
1. Mac에 PostgreSQL 설치 및 설정 PostgreSQL (Postgres.app) 설치 (for mac) 1. 설치 방법 1) Postgres.app 2) Homebrew 3) MacPorts 4) Fink 3,4 번은 처음 보는 것들이라 몸르겠고 1번과 2번중 간단하고 직접적으로 설치가 가능한 Postgres.app 방법을 선택. 이런 프로그램을 받을 때 버.. loosie.tistory.com 2. Spring Project 개발환경에 설정 1) DB와 유저(role) 만들고 유저에게 권한 할당하기 create database testdb; create user testuser with encrypted password 'testpass'; grant all privileges on da..