반응형
server:
port: 8080
servlet:
context-path: /
encoding:
charset: utf-8
session:
timeout: 30
spring:
datasource:
url: jdbc:sqlserver://IP주소:포트번호;databaseName=데이터베이스이름
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
username: 아이디
password: 비밀번호
jpa:
database: sql-server
open-in-view: true
hibernate:
ddl-auto: create
naming:
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
show-sql: true
properties:
hibernate.format_sql: true
output:
ansi:
enabled: always
반응형