Notice
Recent Posts
Recent Comments
Link
투케이2K
98. (spring/스프링) [간단 소스] application.yml 파일에서 [maria] [DB] 접속 정보 작성 본문
[개발 환경 설정]
개발 툴 : inteli j
개발 언어 : spring
[application.yml 접속 정보 작성]
spring:
# [profiles : 배포 시 설정 이름 : spring 내 설정]
profiles:
active: prod
# [devtools : spring 내 설정]
devtools:
livereload:
enabled: true
# [datasource : spring 내 설정]
# [url : port 및 servername 작성]
# [username : 스키마 명칭]
# [password : 비밀 번호]
datasource:
driver-class-name: org.mariadb.jdbc.Driver
jdbc-url: jdbc:mariadb://3.44.138.63:3306/test?characterEncoding=UTF-8&serverTimezone=UTC&characterEncoding=utf8&noAccessToProcedureBodies=true
username: test
password: test@1234
hikari:
maximum-pool-size: 20
connection-timeout: 30000
server:
port: 7000
mybatis:
mapper-locations: classpath:D_Mybatis/*.xml
반응형
'Spring' 카테고리의 다른 글
Comments