2 Replies Latest reply on Nov 27, 2014 8:43 AM by alexchri

    How to setup a web application session timeout ?

    alexchri

      Hi All,

       

      Just wondering how to setup a session timeout programmatically. Here is how my configuration is setup :

       

              builder

                  .http()

                      .allPaths()

                          .authenticateWith()

                              .form()

                                  .loginPage("/login.faces")

                                  .errorPage("/error.faces")

                      .forPath("/logout")

                          .logout()

                          .redirectTo("/");

       

      Thanks for any help.