Currently, the MessageStoreFactory and LogFactory beans are defaulted to FileStoreFactory and ScreenLogFactory types and the configuration for these factories lives in the quickfixj config file. These factories should be auto configurable via a property in the spring boot starter that will automatically create the correct bean:
Currently, the
MessageStoreFactory
andLogFactory
beans are defaulted toFileStoreFactory
andScreenLogFactory
types and the configuration for these factories lives in the quickfixj config file. These factories should be auto configurable via a property in the spring boot starter that will automatically create the correct bean:For example, a
quickfixj.server.message-store-factory=jdbc
would create aJdbcStoreFactory
bean. The same for the other types.