I have an issue with configuring default time for session timeout in Spring Boot app. I have the following in my applicaion.properties
:
datasource.program_management.driverClass=org.postgresql.Driver
datasource.program_management.url=jdbc:postgresql://localhost:5433/db
datasource.program_management.username=username
datasource.program_management.password=pass
logging.level.appName = DEBUG
server.session.timeout=30
However, this doesn't work. Any ideas why?