I'm creating a reactive Spring Boot project using WebFlux. I need to configure the session cookie name and path.
In a Tomcat based project it is very easy to configure the session cookie using the configuration file:
server.servlet.session.cookie.name = MYSESSIONID
server.servlet.session.cookie.path = /
If I configure these properties in the WebFlux project it doesn't affect the cookie parameters. How to do that?