From 45550503019541792e38a6b1d9d5e310e8a05c54 Mon Sep 17 00:00:00 2001
From: 疯狂的狮子li <15040126243@163.com>
Date: 星期五, 17 七月 2020 11:41:09 +0800
Subject: [PATCH] 删除 mybatis相关配置
---
/dev/null | 15 ---------------
ruoyi/src/main/resources/application.yml | 9 ---------
2 files changed, 0 insertions(+), 24 deletions(-)
diff --git a/ruoyi/src/main/java/com/ruoyi/framework/config/MyBatisConfig.java b/ruoyi/src/main/java/com/ruoyi/framework/config/MyBatisConfig.java
deleted file mode 100644
index 907f04d..0000000
--- a/ruoyi/src/main/java/com/ruoyi/framework/config/MyBatisConfig.java
+++ /dev/null
@@ -1,108 +0,0 @@
-//package com.ruoyi.framework.config;
-//
-//import java.io.IOException;
-//import java.util.ArrayList;
-//import java.util.HashSet;
-//import java.util.List;
-//import javax.sql.DataSource;
-//import org.apache.ibatis.io.VFS;
-//import org.apache.ibatis.session.SqlSessionFactory;
-//import org.mybatis.spring.SqlSessionFactoryBean;
-//import org.mybatis.spring.boot.autoconfigure.SpringBootVFS;
-//import org.springframework.beans.factory.annotation.Autowired;
-//import org.springframework.context.annotation.Bean;
-//import org.springframework.context.annotation.Configuration;
-//import org.springframework.core.env.Environment;
-//import org.springframework.core.io.DefaultResourceLoader;
-//import org.springframework.core.io.Resource;
-//import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
-//import org.springframework.core.io.support.ResourcePatternResolver;
-//import org.springframework.core.type.classreading.CachingMetadataReaderFactory;
-//import org.springframework.core.type.classreading.MetadataReader;
-//import org.springframework.core.type.classreading.MetadataReaderFactory;
-//import org.springframework.util.ClassUtils;
-//
-///**
-// * Mybatis鏀寔*鍖归厤鎵弿鍖�
-// *
-// * @author ruoyi
-// */
-//@Configuration
-//public class MyBatisConfig
-//{
-// @Autowired
-// private Environment env;
-//
-// static final String DEFAULT_RESOURCE_PATTERN = "**/*.class";
-//
-// public static String setTypeAliasesPackage(String typeAliasesPackage)
-// {
-// ResourcePatternResolver resolver = (ResourcePatternResolver) new PathMatchingResourcePatternResolver();
-// MetadataReaderFactory metadataReaderFactory = new CachingMetadataReaderFactory(resolver);
-// List<String> allResult = new ArrayList<String>();
-// try
-// {
-// for (String aliasesPackage : typeAliasesPackage.split(","))
-// {
-// List<String> result = new ArrayList<String>();
-// aliasesPackage = ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX
-// + ClassUtils.convertClassNameToResourcePath(aliasesPackage.trim()) + "/" + DEFAULT_RESOURCE_PATTERN;
-// Resource[] resources = resolver.getResources(aliasesPackage);
-// if (resources != null && resources.length > 0)
-// {
-// MetadataReader metadataReader = null;
-// for (Resource resource : resources)
-// {
-// if (resource.isReadable())
-// {
-// metadataReader = metadataReaderFactory.getMetadataReader(resource);
-// try
-// {
-// result.add(Class.forName(metadataReader.getClassMetadata().getClassName()).getPackage().getName());
-// }
-// catch (ClassNotFoundException e)
-// {
-// e.printStackTrace();
-// }
-// }
-// }
-// }
-// if (result.size() > 0)
-// {
-// HashSet<String> hashResult = new HashSet<String>(result);
-// allResult.addAll(hashResult);
-// }
-// }
-// if (allResult.size() > 0)
-// {
-// typeAliasesPackage = String.join(",", (String[]) allResult.toArray(new String[0]));
-// }
-// else
-// {
-// throw new RuntimeException("mybatis typeAliasesPackage 璺緞鎵弿閿欒,鍙傛暟typeAliasesPackage:" + typeAliasesPackage + "鏈壘鍒颁换浣曞寘");
-// }
-// }
-// catch (IOException e)
-// {
-// e.printStackTrace();
-// }
-// return typeAliasesPackage;
-// }
-//
-// @Bean
-// public SqlSessionFactory sqlSessionFactory(DataSource dataSource) throws Exception
-// {
-// String typeAliasesPackage = env.getProperty("mybatis.typeAliasesPackage");
-// String mapperLocations = env.getProperty("mybatis.mapperLocations");
-// String configLocation = env.getProperty("mybatis.configLocation");
-// typeAliasesPackage = setTypeAliasesPackage(typeAliasesPackage);
-// VFS.addImplClass(SpringBootVFS.class);
-//
-// final SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean();
-// sessionFactory.setDataSource(dataSource);
-// sessionFactory.setTypeAliasesPackage(typeAliasesPackage);
-// sessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources(mapperLocations));
-// sessionFactory.setConfigLocation(new DefaultResourceLoader().getResource(configLocation));
-// return sessionFactory.getObject();
-// }
-//}
\ No newline at end of file
diff --git a/ruoyi/src/main/resources/application.yml b/ruoyi/src/main/resources/application.yml
index 9073aa7..b5631c7 100644
--- a/ruoyi/src/main/resources/application.yml
+++ b/ruoyi/src/main/resources/application.yml
@@ -67,15 +67,6 @@
secret: abcdefghijklmnopqrstuvwxyz
# 浠ょ墝鏈夋晥鏈燂紙榛樿30鍒嗛挓锛�
expireTime: 30
-
-## MyBatis閰嶇疆
-#mybatis:
-# # 鎼滅储鎸囧畾鍖呭埆鍚�
-# typeAliasesPackage: com.ruoyi.project.**.domain
-# # 閰嶇疆mapper鐨勬壂鎻忥紝鎵惧埌鎵�鏈夌殑mapper.xml鏄犲皠鏂囦欢
-# mapperLocations: classpath*:mybatis/**/*Mapper.xml
-# # 鍔犺浇鍏ㄥ眬鐨勯厤缃枃浠�
-# configLocation: classpath:mybatis/mybatis-config.xml
# MyBatis閰嶇疆
mybatis-plus:
diff --git a/ruoyi/src/main/resources/mybatis/mybatis-config.xml b/ruoyi/src/main/resources/mybatis/mybatis-config.xml
deleted file mode 100644
index e8b52be..0000000
--- a/ruoyi/src/main/resources/mybatis/mybatis-config.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE configuration
-PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
-"http://mybatis.org/dtd/mybatis-3-config.dtd">
-<configuration>
-
- <settings>
- <setting name="cacheEnabled" value="true" /> <!-- 鍏ㄥ眬鏄犲皠鍣ㄥ惎鐢ㄧ紦瀛� -->
- <setting name="useGeneratedKeys" value="true" /> <!-- 鍏佽 JDBC 鏀寔鑷姩鐢熸垚涓婚敭 -->
- <setting name="defaultExecutorType" value="REUSE" /> <!-- 閰嶇疆榛樿鐨勬墽琛屽櫒 -->
- <setting name="logImpl" value="SLF4J" /> <!-- 鎸囧畾 MyBatis 鎵�鐢ㄦ棩蹇楃殑鍏蜂綋瀹炵幇 -->
- <!-- <setting name="mapUnderscoreToCamelCase" value="true"/> 椹煎嘲寮忓懡鍚� -->
- </settings>
-
-</configuration>
--
Gitblit v1.9.3