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 @@ -388,6 +388,10 @@ protected SqlSessionFactory buildSqlSessionFactory() throws IOException {
388
388
configuration .setObjectWrapperFactory (this .objectWrapperFactory );
389
389
}
390
390
391
+ if (this .vfs != null ) {
392
+ configuration .setVfsImpl (this .vfs );
393
+ }
394
+
391
395
if (hasLength (this .typeAliasesPackage )) {
392
396
String [] typeAliasPackageArray = tokenizeToStringArray (this .typeAliasesPackage ,
393
397
ConfigurableApplicationContext .CONFIG_LOCATION_DELIMITERS );
@@ -446,10 +450,6 @@ protected SqlSessionFactory buildSqlSessionFactory() throws IOException {
446
450
}
447
451
}
448
452
449
- if (this .vfs != null ) {
450
- configuration .setVfsImpl (this .vfs );
451
- }
452
-
453
453
if (xmlConfigBuilder != null ) {
454
454
try {
455
455
xmlConfigBuilder .parse ();
You can’t perform that action at this time.
0 commit comments