Search code examples
javaspring-webflow

How to find which pages do I pass in spring webflow


I am using spring webflow. I have a main page that is called "X" and I want to create a log record for which pages is passed by the users untill reaching my main pages that is "X".

My question is how can I find which pages is passed by users when they are in "X" page ?. Is webflow providing any future for this problen?

Thank you for your interest.


Solution

  • You have a getPageName() avaliable according to Spring API.

    Take a look here.

    You could just save the visited pages into an array and make a count++ each time the page is visited.