30 lines
1017 B
Properties
30 lines
1017 B
Properties
|
|
# 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
|
|
server.servlet.session.timeout=30m
|
|
|
|
spring.thymeleaf.enabled=false
|
|
server.error.whitelabel.enabled=false
|
|
|
|
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
|
|
#spring.jpa.show-sql: true
|
|
|
|
# My special properties
|
|
gourmet.password.file=${user.home}/.gourmetpw
|
|
|
|
# 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
|