Solution: Using log4j with an AsynAppender and a JDBCAppender.
You can configure the buffer size of your AsynAppender in the log4j.xml. Then when the buffer is full, it will use the JDBCAppender to flush everything in the Database.
ex:
<appender name="DB" class="org.apache.log4j.jdbc.JDBCAppender">
....
your DB CONFIG
<appender name="PerfAppender" class="org.apache.log4j.AsyncAppender">
<param name="BufferSize" value="5000" />
<appender-ref ref="DB" />
</appender>
This way, it do what you describe, and you don't even have to write a line of code ;-) well almost...
More details:
You can persist the data using th MDC of log4J. MDC is basically a hashmap in which you can store the data you wanna log (key,value). Then in your log4j.xml you can access the data in the MDC with the %X.
ex:
<appender name="DB" class="org.apache.log4j.jdbc.JDBCAppender">
<param name="URL" value="yoururlconnection" />
<param name="Driver" value="com.ibm.db2.jcc.DB2Driver" />
<param name="User" value="myuser" />
<param name="Password" value="mypassord" />
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern"
value="INSERT INTO mytable (field1, field2, etc) VALUES
('%X{value1}', '%X{value2}', etc)" />
</layout>
</appender>