My Apache Tomcat Server is getting periodic updates from a Java based client Application, At the moment the scenario is just one client and talking to the server.
I want to log the messages from the client onto the server with time-stamp what kind of framework will help me in achieving this?
|
|
|
||||||||||||
|
|
|
EDIT: The OP goal was actually pretty unclear and I'm modifying my answer after some clarifications.
And pick one of them (I'd use Log4J or Logback). To save your messages for later processing from the webapp (e.g. generating a web page with some graphs/charts), the best approach is to use a database. Just read/write them from/to a simple table with a timestamp column. If you are not really familiar with Java, JDBC, persistence, connection pooling, datasource, etc, I'd suggest to use the Spring framework as it will hide most of the complexity. For the database part, have a look at the Chapter 11. Data access using JDBC from the Spring documentation. Pay a special attention to the |
||||||||
|
|
|
Create a special JSP page for accepting log entries, and invoke it with http://..... foo.jsp?l=the%20stuff%to%log (i.e. URL encoded) You then just need to pick out the "l" parameter and do with it what you need to do. An initial implementation could be invoking the log(String s) method in the servlet context. |
||
|
|
