- package cn.com.taiji.cql.service;
- import cn.com.taiji.cql.model.GeoDataSource;
- import org.geotools.api.data.DataStore;
- import javax.sql.DataSource;
- public interface IGeoDataSourceService {
- /**
- * 基于geotools创建mysql数据源
- * @return
- */
- DataSource createGeoDataSource() throws Exception;
- }
|