All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sagframe.sagacity.sqltoy.plus.SqlToyPlusConfiguration Maven / Gradle / Ivy

There is a newer version: 5.6.22.jre8
Show newest version
package com.sagframe.sagacity.sqltoy.plus;

import com.sagframe.sagacity.sqltoy.plus.dao.*;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class SqlToyPlusConfiguration {

    @Bean
    public SqlToySinFiledMappingStrategy getSqlToySinFiledMappingStrategy() {
        return new SqlToySinFiledMappingStrategy();
    }

    @Bean
    public SqlToyMultiFiledMappingStrategy getSqlToyMultiFiledMappingStrategy() {
        return new SqlToyMultiFiledMappingStrategy();
    }

    @Bean
    public SqlToyEntityMetaCache getSqlToyEntityMetaCache() {
        return new SqlToyEntityMetaCache();
    }

    @Bean
    public SqlToyHelperDao getSqlToyHelperDao() {
        return new SqlToyHelperDaoImpl();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy