Package org.ff4j.store

Examples of org.ff4j.store.FeatureStoreSpringJDBC


    @Override
    protected FeatureStore initStore() {
        builder = new EmbeddedDatabaseBuilder();
        db = builder.setType(EmbeddedDatabaseType.HSQL).addScript("classpath:schema-ddl.sql").addScript("classpath:ff-store.sql")
                .build();
        FeatureStoreSpringJDBC jdbcStore = new FeatureStoreSpringJDBC();
        jdbcStore.setDataSource(db);
        jdbcStore.getJdbcTemplate();
        return jdbcStore;
    }
View Full Code Here

TOP

Related Classes of org.ff4j.store.FeatureStoreSpringJDBC

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.