Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jhipster session timeout configuration

I downloaded JHipster from git and tried to understand how to configure session timeout but couldn't find any web.xml or java-based class for that.

Could you please help me figure out how can I configure session timeout for example to be 20 min?

like image 651
mihatel Avatar asked Feb 03 '14 14:02

mihatel


1 Answers

This is a Spring Boot configuration.

You can configure it in your application-*.yml file:

server:
    port: 8080
    address: localhost
    sessionTimeout: 20000
like image 72
Julien Dubois Avatar answered Nov 06 '22 14:11

Julien Dubois