Build SPL Microservices with Spring Cloud
— esProc includes supports for Spring data source Introduction esProc has a rich set of data source configuration classes that can meet most configuration requirements. Yet, when trying to dock a native data source into esProc, we find that a special interface is needed.The Spring data source factory:com.scudata.common.SpringDBSessionFactory.java,And a general-purpose data source factory are thus created.com.scudata.common.DataSourceSessionFactory.java。Each of them can implement the ISessionFactory interface. Just Invoke their unique static method create to generate ISessionFactory and pass it to the esProc runtime environment. This essay explains the role of com.scudata.common.SpringDBSessionFactory.java for building microservices based on Spring Cloud.The general-purpose data source factory com.scudata.common.DataSourceSessionFactory.java
...