Explicitly set session persistence to false (result in non serializable exception)

This commit is contained in:
Nanne Baars 2019-10-20 15:09:45 +02:00 committed by Nanne Baars
parent 28299f3ced
commit 9b87fd602c

View File

@ -1,9 +1,11 @@
server.error.include-stacktrace=always server.error.include-stacktrace=always
server.error.path=/error.html server.error.path=/error.html
server.servlet.context-path=/WebGoat server.servlet.context-path=/WebGoat
server.servlet.session.persistent=false
server.port=${WEBGOAT_PORT:8080} server.port=${WEBGOAT_PORT:8080}
server.address=${WEBGOAT_HOST:127.0.0.1} server.address=${WEBGOAT_HOST:127.0.0.1}
server.ssl.key-store-type=${WEBGOAT_KEYSTORE_TYPE:PKCS12} server.ssl.key-store-type=${WEBGOAT_KEYSTORE_TYPE:PKCS12}
server.ssl.key-store=${WEBGOAT_KEYSTORE:classpath:goatkeystore.pkcs12} server.ssl.key-store=${WEBGOAT_KEYSTORE:classpath:goatkeystore.pkcs12}
server.ssl.key-store-password=${WEBGOAT_KEYSTORE_PASSWORD:password} server.ssl.key-store-password=${WEBGOAT_KEYSTORE_PASSWORD:password}