You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
760 B
25 lines
760 B
# Application Configuration
|
|
spring.application.name=movie-ratings-analyzer
|
|
|
|
# H2 Database Configuration
|
|
spring.datasource.url=jdbc:h2:mem:moviedb;DB_CLOSE_DELAY=-1
|
|
spring.datasource.driverClassName=org.h2.Driver
|
|
spring.datasource.username=sa
|
|
spring.datasource.password=
|
|
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
|
|
spring.h2.console.enabled=true
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
|
|
# Caffeine Cache Configuration
|
|
spring.cache.type=caffeine
|
|
spring.cache.cache-names=directorRankings,movieTypes
|
|
spring.cache.caffeine.spec=expireAfterWrite=10m,maximumSize=100
|
|
|
|
# Logging
|
|
logging.level.com.movieratings=INFO
|
|
logging.level.org.hibernate.SQL=INFO
|
|
|
|
# Thymeleaf
|
|
spring.thymeleaf.cache=false
|
|
spring.thymeleaf.mode=HTML
|
|
spring.thymeleaf.encoding=UTF-8
|
|
|