新聞中心
去Oracle行動(dòng)
最近公司要發(fā)展海外項(xiàng)目,所以要將現(xiàn)有的系統(tǒng)全部平移過(guò)去,另外數(shù)據(jù)庫(kù)也要從原來(lái)的Oracle變?yōu)镸ySQL。公司的數(shù)據(jù)庫(kù)交互層面使用的是Mybatis,而Oracle與Mysql也有一些語(yǔ)法上的不同。所以在項(xiàng)目中的Sql要改動(dòng),但是多個(gè)項(xiàng)目中涉及到的Sql非常多,如果僅憑人工一條一條辨別的話(huà),工作量有點(diǎn)大。
專(zhuān)注于為中小企業(yè)提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)蘇尼特左免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上千余家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
所以就萌發(fā)出了直接將數(shù)據(jù)源變?yōu)镸ysql,利用反射批量執(zhí)行Mapper中的方法,然后如果有參數(shù)的話(huà),就設(shè)置為默認(rèn)的初始值,然后記錄下來(lái)成功的數(shù)據(jù)和失敗的數(shù)據(jù),這樣就可以根據(jù)失敗原因進(jìn)行修改。能夠節(jié)省很大的時(shí)間。
執(zhí)行效果
代碼介紹
總體思路就三步
通過(guò)反射獲得要執(zhí)行的Mapper類(lèi)的所有方法
獲得方法中的參數(shù),并賦值
- 執(zhí)行
AutoTestMapper autoTestMapper = new AutoTestMapper("存放Mapper全路徑名");
autoTestMapper.openSqlSession(sqlSessionFactory);
在構(gòu)造函數(shù)中傳入全路徑名后,進(jìn)行解析,解析出包名和所有的文件名并存儲(chǔ)起來(lái)
public AutoTestMapper(String path) throws IOException, ClassNotFoundException {
String mapperContent = getFileContent(path);
String pathPattern = "import [a-z,A-Z,/.]+;";
String[] pathArr = matchMethod(pathPattern, mapperContent).split(";");
for (int i = 0; i < pathArr.length; i++) {
pathArr[i] = pathArr[i].replaceAll("import ", "");
Class cls = Class.forName(pathArr[i]);
if (!cls.isInterface()) {
TYPE_ARRAY.add(cls);
}
}
//獲得全路徑名的前綴
String packPattern = "package [a-z,A-Z,/.]+;";
String[] packPathArr = matchMethod(packPattern, mapperContent).split(";");
String packPath = packPathArr[0].replaceAll("package ", "").replaceAll(";", "");
this.PACK_PATH = packPath;
}
然后調(diào)用openSqlSession的方法,傳入SqlSessionFactory參數(shù)
List
然后通過(guò)Mybatyis提供的方法getMapper()傳入類(lèi)名獲得所要Mapper類(lèi)。核心方法就是autoTestInvoke()方法了
private Map> autoTestInvoke(Class c, Object o)
{
Method[] declaredMethods = c.getDeclaredMethods();
String fileName = c.getName().substring(c.getName().lastIndexOf("."));
List invokeSuccess = new ArrayList<>();
List invokeFail = new ArrayList<>();
Map> resultMap = new HashMap<>();
//給參數(shù)賦初始值
for (Method method : declaredMethods) {
List
這里面完成為參數(shù)賦初始值,和執(zhí)行的邏輯。
使用說(shuō)明
自動(dòng)測(cè)試Mapper除了傳參為L(zhǎng)ist和Set,其余都能測(cè)到。在xml中所有的if條件都會(huì)拼接到。
將AutoTestMapper拷貝到測(cè)試模塊中。如圖所示
在resources模塊中加入mybatis-config.xml文件,如圖所示
mybatis-config.xml內(nèi)容如下
在根目錄創(chuàng)建lib文件夾,并將測(cè)試的Mybatis版本放入其中,并在Gradle中引入此包
compile files('../lib/mybatis-3.5.0-hupengfeiTest.jar')此處路徑填寫(xiě)相對(duì)路徑
如果目錄結(jié)構(gòu)如下,那么就compile files('lib/mybatis-3.5.0-hupengfeiTest.jar')
mybatis-3.5.0-hupengfeiTest.jar在github下面的lib目錄中
-lib
-- mybatis-3.5.0-hupengfeiTest.jar
-build.gradle
如果目錄結(jié)構(gòu)如下,那么就compile files('../lib/mybatis-3.5.0-hupengfeiTest.jar')
-lib
-- mybatis-3.5.0-hupengfeiTest.jar
-service
-- build.gradle
在單元測(cè)試中編寫(xiě)代碼,進(jìn)行測(cè)試
@RunWith(SpringJUnit4Cla***unner.class)
@SpringBootTest(classes = { AirApplication.class })//此處AirApplication.class為項(xiàng)目中的啟動(dòng)類(lèi),自行修改
public class TestMapper {
@Test
public void testCeshi()
throws IllegalAccessException, IntrospectionException, InvocationTargetException, NoSuchMethodException,
InstantiationException, IOException, ClassNotFoundException {
//讀取Mybatis配置
Reader resourceAsReader = Resources.getResourceAsReader("mybatis-config.xml");
//生成SqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(resourceAsReader);
resourceAsReader.close();
AutoTestMapper autoTestMapper = new AutoTestMapper(存放Mapper的Java文件夾的全路徑名);
//執(zhí)行測(cè)試方法
autoTestMapper.openSqlSession(sqlSessionFactory);
}
}
就會(huì)在控制臺(tái)中打印出執(zhí)行失敗的Mapper以及其原因。如下圖所示
標(biāo)題名稱(chēng):如何批量測(cè)試Mybatis項(xiàng)目中SQL是否正確
標(biāo)題來(lái)源:http://www.dlmjj.cn/article/jcehch.html