IGeoDataSourceService.java 323 B

12345678910111213141516
  1. package cn.com.taiji.cql.service;
  2. import cn.com.taiji.cql.model.GeoDataSource;
  3. import org.geotools.api.data.DataStore;
  4. import javax.sql.DataSource;
  5. public interface IGeoDataSourceService {
  6. /**
  7. * 基于geotools创建mysql数据源
  8. * @return
  9. */
  10. DataSource createGeoDataSource() throws Exception;
  11. }