Commit 0928ce83 authored by hewei's avatar hewei

引入了错误的类

parent f0f53dfc
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
package com.itfsw.mybatis.generator.plugins.tools; package com.itfsw.mybatis.generator.plugins.tools;
import com.sun.deploy.util.StringUtils;
import java.lang.reflect.Field; import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
...@@ -81,8 +80,8 @@ public class ObjectUtil { ...@@ -81,8 +80,8 @@ public class ObjectUtil {
* @throws NoSuchFieldException * @throws NoSuchFieldException
* @throws IllegalAccessException * @throws IllegalAccessException
*/ */
public ObjectUtil set(String filedName, Object value) throws NoSuchFieldException, IllegalAccessException, InstantiationException, ClassNotFoundException { public ObjectUtil set(String filedName, Object value) throws IllegalAccessException {
String[] strs = StringUtils.splitString(filedName, "."); String[] strs = filedName.split("\\.");
if (strs.length > 1) { if (strs.length > 1) {
Object obj = this.get(strs[0]); Object obj = this.get(strs[0]);
new ObjectUtil(obj).set(filedName.replaceFirst("\\w+\\.", ""), value); new ObjectUtil(obj).set(filedName.replaceFirst("\\w+\\.", ""), value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment