File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/main/java/org/apache/ibatis/builder/xml Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ private void settingsElement(XNode context) throws Exception {
195
195
}
196
196
configuration .setAutoMappingBehavior (AutoMappingBehavior .valueOf (props .getProperty ("autoMappingBehavior" , "PARTIAL" )));
197
197
configuration .setCacheEnabled (booleanValueOf (props .getProperty ("cacheEnabled" ), true ));
198
- configuration .setProxyFactory ((ProxyFactory ) createInstance (props .getProperty ("proxyFactory" , "CGLIB" )));
198
+ configuration .setProxyFactory ((ProxyFactory ) createInstance (props .getProperty ("proxyFactory" )));
199
199
configuration .setLazyLoadingEnabled (booleanValueOf (props .getProperty ("lazyLoadingEnabled" ), false ));
200
200
configuration .setAggressiveLazyLoading (booleanValueOf (props .getProperty ("aggressiveLazyLoading" ), true ));
201
201
configuration .setMultipleResultSetsEnabled (booleanValueOf (props .getProperty ("multipleResultSetsEnabled" ), true ));
You can’t perform that action at this time.
0 commit comments