Files
spring-boot-examples/jpa/src/main/resources/application.yaml
2024-02-28 16:39:48 +09:00

23 lines
484 B
YAML

spring:
application:
name: My spring-boot project
datasource:
url: jdbc:mariadb://localhost:3306/test
driver-class-name: org.mariadb.jdbc.Driver
username: testuser
password: _test_
jpa:
open-in-view: false
generate-ddl: true
show-sql: true
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
thymeleaf:
prefix: classpath:/view/
suffix: .html
server:
port: 8080