|
@@ -0,0 +1,60 @@
|
|
|
+package com.baomidou.mybatisplus.test.oracle.config;
|
|
|
+
|
|
|
+import javax.sql.DataSource;
|
|
|
+
|
|
|
+import org.apache.ibatis.plugin.Interceptor;
|
|
|
+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.ResourceLoader;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.MybatisConfiguration;
|
|
|
+import com.baomidou.mybatisplus.MybatisXMLLanguageDriver;
|
|
|
+import com.baomidou.mybatisplus.entity.GlobalConfiguration;
|
|
|
+import com.baomidou.mybatisplus.entity.OracleKeyGenerator;
|
|
|
+import com.baomidou.mybatisplus.plugins.PaginationInterceptor;
|
|
|
+import com.baomidou.mybatisplus.spring.MybatisSqlSessionFactoryBean;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * Mybatis Plus Config
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author Caratacus
|
|
|
+ * @date 2017/4/1
|
|
|
+ */
|
|
|
+@Configuration
|
|
|
+@MapperScan("com.baomidou.mybatisplus.test.oracle.mapper")
|
|
|
+public class OracleMybatisPlusConfig {
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public SqlSessionFactory sqlSessionFactory(DataSource dataSource, ResourceLoader resourceLoader, GlobalConfiguration globalConfiguration) throws Exception {
|
|
|
+ MybatisSqlSessionFactoryBean sqlSessionFactory = new MybatisSqlSessionFactoryBean();
|
|
|
+ sqlSessionFactory.setDataSource(dataSource);
|
|
|
+ sqlSessionFactory.setTypeAliasesPackage("com.baomidou.mybatisplus.test.oracle.entity");
|
|
|
+ MybatisConfiguration configuration = new MybatisConfiguration();
|
|
|
+ configuration.setDefaultScriptingLanguage(MybatisXMLLanguageDriver.class);
|
|
|
+ configuration.setJdbcTypeForNull(JdbcType.NULL);
|
|
|
+ configuration.setMapUnderscoreToCamelCase(true);
|
|
|
+ sqlSessionFactory.setConfiguration(configuration);
|
|
|
+ PaginationInterceptor pagination = new PaginationInterceptor();
|
|
|
+ pagination.setDialectType("oracle");
|
|
|
+ sqlSessionFactory.setPlugins(new Interceptor[]{
|
|
|
+ pagination
|
|
|
+ });
|
|
|
+ sqlSessionFactory.setGlobalConfig(globalConfiguration);
|
|
|
+ return sqlSessionFactory.getObject();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public GlobalConfiguration globalConfiguration() {
|
|
|
+ GlobalConfiguration conf = new GlobalConfiguration();
|
|
|
+ conf.setIdType(1);
|
|
|
+ conf.setDbType("oracle");
|
|
|
+ conf.setKeyGenerator(new OracleKeyGenerator());
|
|
|
+// conf.setDbColumnUnderline(true);
|
|
|
+ return conf;
|
|
|
+ }
|
|
|
+}
|