Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- java.sql.SQLException: Incorrect string value: #RDS #AWS #mariadb #springboot
- 편집모드
- 사용자 권한 부여
- AWS #AWS장단점 #AWS차별화 # AWS서비스
- linux Xshell
- Push
- 공동작업자
- insert안됨
- 코딩애플
- VSCode업로드
- javascript
- OracleVMVirtualBox
- Linux
- 명령어 모음
- 구성파일
- oracle vm virtualbox
- Function
- html템플릿
- Github
- react-dom
- aws
- Disk추가
- Spring
- 코테관련공부
- EaaS
- Biling and Cost Manager
- react
- VSCode
- SpringBoot개발환경
- GiyHub
Archives
- Today
- Total
귀농 전까지 쓰는 개발 일지
<SpringBoot> mariaDB 연동 본문
application.properties
?application properties? -> SpringBoot가 자동 로딩하는 규약 (+application.yaml)
#mariaDB
spring.datasource.driverClassName=org.mariadb.jdbc.Driver
spring.datasource.url=jdbc:mariadb://localhost:포트번호/DB이름?characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=사용자
spring.datasource.password=암호
# jpa
spring.jpa.hibernate.ddl-auto=update
spring.jpa.database-platform=org.hibernate.dialect.MariaDBDialect
spring.jpa.show-sql=true
spring.jpa.hibernate.use-new-id-generator-mappings=false
spring.jpa.properties.hibernate.globally_quoted_identifiers=true
server.port=8080