application.setting
server.port=8090
# ===============================
# = DATA SOURCE
# ===============================
# Set here configurations for the database connection
# MySQL: Connection url for the database "journal"
spring.datasource.url = jdbc:mysql://localhost:3306/journal?verifyServerCertificate=false&useSSL=false&serverTimezone=UTC
spring.datasource.connectionProperties=useUnicode=true;characterEncoding=utf-8
# MySQL: Username and password
spring.datasource.username = springboot
spring.datasource.password = springboot
# Keep the connection alive if idle for a long time (needed in production)
spring.datasource.testWhileIdle = true
spring.datasource.validationQuery = SELECT 1
# ===============================
# = JPA / HIBERNATE
# ===============================
# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
# stripped before adding them to the entity manager).
# Show or not log for each sql query
spring.jpa.show-sql = true
# Hibernate ddl auto (create, create-drop, update): with "update" the database
# schema will be automatically updated accordingly to java entities found in
# the project
spring.jpa.hibernate.ddl-auto = create-drop
# Naming strategy
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
# Allows Hibernate to generate SQL optimized for a particular DBMS
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
# ===============================
# = Data - Rest
# ===============================
spring.data.rest.basePath=/api