Package org.b3log.latke

Examples of org.b3log.latke.RuntimeDatabase


        try {
            Class<Repository> repositoryClass = null;

            switch (runtimeEnv) {
                case LOCAL:
                    final RuntimeDatabase runtimeDatabase = Latkes.getRuntimeDatabase();
                    switch (runtimeDatabase) {
                        case MYSQL:
                            repositoryClass = (Class<Repository>) Class.forName("org.b3log.latke.repository.jdbc.JdbcRepository");
                            break;
                        default:
View Full Code Here

TOP

Related Classes of org.b3log.latke.RuntimeDatabase

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.