File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/mybatis/spring Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -422,6 +422,10 @@ protected SqlSessionFactory buildSqlSessionFactory() throws IOException {
422
422
configuration .setObjectWrapperFactory (this .objectWrapperFactory );
423
423
}
424
424
425
+ if (this .vfs != null ) {
426
+ configuration .setVfsImpl (this .vfs );
427
+ }
428
+
425
429
if (hasLength (this .typeAliasesPackage )) {
426
430
String [] typeAliasPackageArray = tokenizeToStringArray (this .typeAliasesPackage ,
427
431
ConfigurableApplicationContext .CONFIG_LOCATION_DELIMITERS );
@@ -480,10 +484,6 @@ protected SqlSessionFactory buildSqlSessionFactory() throws IOException {
480
484
}
481
485
}
482
486
483
- if (this .vfs != null ) {
484
- configuration .setVfsImpl (this .vfs );
485
- }
486
-
487
487
if (this .cache != null ) {
488
488
configuration .addCache (this .cache );
489
489
}
You can’t perform that action at this time.
0 commit comments