Skip to content

Commit 3322ea9

Browse files
committed
Remove wrong cglib dependency
1 parent 85e2d30 commit 3322ea9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/ibatis/builder/xml/XMLConfigBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ private void settingsElement(XNode context) throws Exception {
195195
}
196196
configuration.setAutoMappingBehavior(AutoMappingBehavior.valueOf(props.getProperty("autoMappingBehavior", "PARTIAL")));
197197
configuration.setCacheEnabled(booleanValueOf(props.getProperty("cacheEnabled"), true));
198-
configuration.setProxyFactory((ProxyFactory) createInstance(props.getProperty("proxyFactory", "CGLIB")));
198+
configuration.setProxyFactory((ProxyFactory) createInstance(props.getProperty("proxyFactory")));
199199
configuration.setLazyLoadingEnabled(booleanValueOf(props.getProperty("lazyLoadingEnabled"), false));
200200
configuration.setAggressiveLazyLoading(booleanValueOf(props.getProperty("aggressiveLazyLoading"), true));
201201
configuration.setMultipleResultSetsEnabled(booleanValueOf(props.getProperty("multipleResultSetsEnabled"), true));

0 commit comments

Comments
 (0)