|
@@ -0,0 +1,87 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2011-2020, baomidou (jobob@qq.com).
|
|
|
+ * <p>
|
|
|
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
|
+ * use this file except in compliance with the License. You may obtain a copy of
|
|
|
+ * the License at
|
|
|
+ * <p>
|
|
|
+ * https://www.apache.org/licenses/LICENSE-2.0
|
|
|
+ * <p>
|
|
|
+ * Unless required by applicable law or agreed to in writing, software
|
|
|
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
+ * License for the specific language governing permissions and limitations under
|
|
|
+ * the License.
|
|
|
+ */
|
|
|
+package com.baomidou.mybatisplus.test.phoenix.config;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.MybatisConfiguration;
|
|
|
+import com.baomidou.mybatisplus.core.config.GlobalConfig;
|
|
|
+import com.baomidou.mybatisplus.core.injector.AbstractMethod;
|
|
|
+import com.baomidou.mybatisplus.core.injector.DefaultSqlInjector;
|
|
|
+import com.baomidou.mybatisplus.extension.MybatisMapWrapperFactory;
|
|
|
+import com.baomidou.mybatisplus.extension.injector.methods.Upsert;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor;
|
|
|
+import com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean;
|
|
|
+import org.apache.ibatis.session.SqlSessionFactory;
|
|
|
+import org.apache.ibatis.type.JdbcType;
|
|
|
+import org.mybatis.spring.annotation.MapperScan;
|
|
|
+import org.springframework.context.annotation.Bean;
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
|
|
|
+
|
|
|
+import javax.sql.DataSource;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Mybatis Plus Config
|
|
|
+ *
|
|
|
+ * @author Caratacus
|
|
|
+ * @since 2017/4/1
|
|
|
+ */
|
|
|
+@Configuration
|
|
|
+@MapperScan("com.baomidou.mybatisplus.test.phoenix.mapper")
|
|
|
+public class MybatisPlusConfig {
|
|
|
+
|
|
|
+ @Bean("mybatisSqlSession")
|
|
|
+ public SqlSessionFactory sqlSessionFactory(DataSource dataSource, GlobalConfig globalConfig) throws Exception {
|
|
|
+ MybatisSqlSessionFactoryBean sqlSessionFactory = new MybatisSqlSessionFactoryBean();
|
|
|
+ /* 数据源 */
|
|
|
+ sqlSessionFactory.setDataSource(dataSource);
|
|
|
+ /* xml扫描 */
|
|
|
+ sqlSessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver()
|
|
|
+ .getResources("classpath:/mapper/*.xml"));
|
|
|
+ /* 扫描 typeHandler */
|
|
|
+ MybatisConfiguration configuration = new MybatisConfiguration();
|
|
|
+ configuration.setJdbcTypeForNull(JdbcType.NULL);
|
|
|
+ /* 驼峰转下划线 */
|
|
|
+ configuration.setMapUnderscoreToCamelCase(true);
|
|
|
+ /* 乐观锁插件 */
|
|
|
+ configuration.addInterceptor(new OptimisticLockerInterceptor());
|
|
|
+ /* map 下划线转驼峰 */
|
|
|
+ configuration.setObjectWrapperFactory(new MybatisMapWrapperFactory());
|
|
|
+ sqlSessionFactory.setConfiguration(configuration);
|
|
|
+ sqlSessionFactory.setGlobalConfig(globalConfig);
|
|
|
+ return sqlSessionFactory.getObject();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public GlobalConfig globalConfig() {
|
|
|
+ GlobalConfig conf = new GlobalConfig();
|
|
|
+ conf.setDbConfig(new GlobalConfig.DbConfig()
|
|
|
+ .setColumnFormat("`%s`"));
|
|
|
+ DefaultSqlInjector phoenixSqlInjector = new DefaultSqlInjector() {
|
|
|
+ /**
|
|
|
+ * 注入自定义全局方法
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public List<AbstractMethod> getMethodList(Class<?> mapperClass) {
|
|
|
+ List<AbstractMethod> methodList = super.getMethodList(mapperClass);
|
|
|
+ methodList.add(new Upsert());
|
|
|
+ return methodList;
|
|
|
+ }
|
|
|
+ };
|
|
|
+ conf.setSqlInjector(phoenixSqlInjector);
|
|
|
+ return conf;
|
|
|
+ }
|
|
|
+}
|