How to display tomcat log on screen

1

I'm creating a feature using jsf with primefaces, to display the application's log (tomcat), on the screen (view xhtml), however I did not find any plugin or append to do this, and before I started developing everything in hand I would to know if there is something in the market.

Or if someone has already developed something similar, that might help.

    
asked by anonymous 03.05.2018 / 16:20

1 answer

0

Unfortunately, there is no "ready" way to do this.

What can be done is:

  • Logging information into a file

  • Schedule the view so that at each X time, it reads the file (or ask the backend to read and return the information).

  • 03.05.2018 / 18:22