포트번호 변경
server.port=8082
데이터베이스 연결
# Database
#driver-class-name 은 사용하고자 하는 데이터베이스로
#spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.datasource.driverClassName=org.mariadb.jdbc.Driver
#spring.datasource.url=데이터베이스 주소
spring.datasource.url=jdbc:mariadb://localhost:3306/gtck?characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=아이디
spring.datasource.password=비밀번호
#spring.datasource.sql-script-encoding=UTF-8
db 업데이트
spring.jpa.hibernate.ddl-auto=update
# create = 실행될때마다 새로만들어짐
# update = 실행될때마다 다시 업로드됨 oracle에서 건드려도 이해를함
# none = 안건드림
postgresql db 연결
spring.datasource.driverClassName=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/gtck?characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=아이디
spring.datasource.password=비밀번호
반응형
'공부 > Spring' 카테고리의 다른 글
Unknown column '' in 'field list' on MySQL error (0) | 2021.05.04 |
---|---|
Table 'DB_NAME.hibernate_sequence' doesn't exist (0) | 2021.04.28 |
JPA Auditing (0) | 2021.04.22 |
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. (0) | 2021.04.22 |
[spring error] No qualifying bean of type (0) | 2021.04.21 |