jhipster session timeout configuration

angularjs, jhipster, security, spring

Solution

This is a Spring Boot configuration.

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

server:
    port: 8080
    address: localhost
    sessionTimeout: 20000

Problem

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?

Original source