gourmetj-springboot/application.properties

30 lines
1017 B
Properties
Raw Normal View History

2021-12-28 17:24:58 +00:00
# THIS is the application properties used when testing in the IDE
# or running stand-alone from the command line.
# It augments/overrides application.yml in the JAR
joinfaces.jsf.webapp-resources-directory=/resources
2022-10-19 13:07:18 +00:00
server.servlet.session.timeout=30m
2021-12-28 17:24:58 +00:00
spring.thymeleaf.enabled=false
server.error.whitelabel.enabled=false
2021-12-28 17:24:58 +00:00
spring.datasource.url=jdbc:mysql://dbase/recipes
#jdbc:sqlite:${home}/recipes.db
spring.datasource.username=recipes
pring.datasource.password=yumyumyum
spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
#Runtime lies and says no longer required, but it defaults to MySQL5.5.0!:
spring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect
#org.sqlite.hibernate.dialect.SQLiteDialect
2021-12-30 17:43:27 +00:00
#spring.jpa.show-sql: true
2022-01-18 14:46:28 +00:00
# My special properties
gourmet.password.file=${user.home}/.gourmetpw
2024-02-01 20:52:21 +00:00
# This will override aplication.yml
#server.servlet.context-parameters.primefaces.THEME=le-frog
### HttpSession timeout (note effects on detailEdit idleMonitors)
server.servlet.session.timeout=35m