Jdbc Event store configuration example

Hello,

I am new to axon and been searching for persisting events to the database instead of file. I have used FileSystemEventStore and its working fine, now i am thinking to use JDBCEventStore but i am unable to find any in axon-quickstart. I wanted to know how to tell axon to store the events data to a particular table , and how to configure it. Does anyone have any good example.

I found it in the Axon-quickstart please ignore the question,

DbOperations dbOperations=new DbOperations(); // Datasource

JdbcEventStore jdbcEventStore=new JdbcEventStore(dbOperations); //EventStore

and the insertion logic is Hard-coded in