|
@@ -0,0 +1,89 @@
|
|
|
+/*
|
|
|
+ * 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.h2.config;
|
|
|
+
|
|
|
+import javax.sql.DataSource;
|
|
|
+
|
|
|
+import org.apache.ibatis.plugin.Interceptor;
|
|
|
+import org.apache.ibatis.session.ExecutorType;
|
|
|
+import org.apache.ibatis.session.SqlSessionFactory;
|
|
|
+import org.apache.ibatis.type.EnumOrdinalTypeHandler;
|
|
|
+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.ResourceLoader;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.core.MybatisConfiguration;
|
|
|
+import com.baomidou.mybatisplus.core.config.GlobalConfig;
|
|
|
+import com.baomidou.mybatisplus.extension.injector.LogicSqlInjector;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.PerformanceInterceptor;
|
|
|
+import com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Mybatis Plus Config
|
|
|
+ *
|
|
|
+ * @author Caratacus
|
|
|
+ * @since 2017/4/1
|
|
|
+ */
|
|
|
+@Configuration
|
|
|
+@MapperScan("com.baomidou.mybatisplus.test.h2.mapper")
|
|
|
+public class MybatisPlusConfigLogicDelete {
|
|
|
+
|
|
|
+ @Bean("mybatisSqlSession")
|
|
|
+ public SqlSessionFactory sqlSessionFactory(DataSource dataSource, ResourceLoader resourceLoader, GlobalConfig globalConfig) throws Exception {
|
|
|
+ MybatisSqlSessionFactoryBean sqlSessionFactory = new MybatisSqlSessionFactoryBean();
|
|
|
+ sqlSessionFactory.setDataSource(dataSource);
|
|
|
+// sqlSessionFactory.setConfigLocation(resourceLoader.getResource("classpath:mybatis-config-object-factory.xml"));
|
|
|
+ sqlSessionFactory.setTypeAliasesPackage("com.baomidou.mybatisplus.test.h2.entity.persistent");
|
|
|
+ MybatisConfiguration configuration = new MybatisConfiguration();
|
|
|
+// configuration.setDefaultScriptingLanguage(MybatisXMLLanguageDriver.class);
|
|
|
+// org.apache.ibatis.session.Configuration configuration = new org.apache.ibatis.session.Configuration();
|
|
|
+ configuration.setJdbcTypeForNull(JdbcType.NULL);
|
|
|
+ /*
|
|
|
+ * 下划线转驼峰开启
|
|
|
+ */
|
|
|
+ configuration.setMapUnderscoreToCamelCase(true);
|
|
|
+ configuration.setDefaultExecutorType(ExecutorType.REUSE);
|
|
|
+ configuration.setDefaultEnumTypeHandler(EnumOrdinalTypeHandler.class); //默认枚举处理
|
|
|
+ sqlSessionFactory.setConfiguration(configuration);
|
|
|
+ PaginationInterceptor pagination = new PaginationInterceptor();
|
|
|
+ OptimisticLockerInterceptor optLock = new OptimisticLockerInterceptor();
|
|
|
+ sqlSessionFactory.setPlugins(new Interceptor[]{
|
|
|
+ pagination,
|
|
|
+ optLock,
|
|
|
+ new PerformanceInterceptor()
|
|
|
+ });
|
|
|
+ sqlSessionFactory.setGlobalConfig(globalConfig);
|
|
|
+ sqlSessionFactory.setTypeEnumsPackage("com.baomidou.mybatisplus.test.h2.enums");
|
|
|
+ return sqlSessionFactory.getObject();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public GlobalConfig globalConfiguration() {
|
|
|
+ GlobalConfig conf = new GlobalConfig();
|
|
|
+ conf.setSqlInjector(new LogicSqlInjector())
|
|
|
+ .setEnableSqlRunner(true)
|
|
|
+ .setDbConfig(new GlobalConfig.DbConfig()
|
|
|
+ .setLogicDeleteValue("NOW()")
|
|
|
+ .setLogicNotDeleteValue("NULL")
|
|
|
+ .setIdType(IdType.ID_WORKER));
|
|
|
+ return conf;
|
|
|
+ }
|
|
|
+}
|