cesardl/sakila-jee

View on GitHub
src/main/resources/application.properties

Summary

Maintainability
Test Coverage
spring.jackson.default-property-inclusion = non_empty

# DataSource settings: set here your own configurations for the database
# connection. In this example we have "sakila" as database name and
# "root" as username.
spring.datasource.url = jdbc:mysql://localhost:3306/sakila?useSSL=false&serverTimezone=UTC
spring.datasource.username = travis
spring.datasource.password =

# Keep the connection alive if idle for a long time (needed in production)
spring.datasource.testWhileIdle = true
spring.datasource.validationQuery = SELECT 1

spring.jpa.open-in-view = false

# Show or not log for each sql query
spring.jpa.show-sql = true

# Hibernate ddl auto (create, create-drop, update)
# spring.jpa.hibernate.ddl-auto = create

# Naming strategy
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy

# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
# stripped before adding them to the entity manager)

# The SQL dialect makes Hibernate generate better SQL for the chosen database
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect

server.port = 8181

management.server.port = 8182
management.server.address = 127.0.0.1