com.github.fashionbrot.ognl.OgnlClassResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation Show documentation
Show all versions of validation Show documentation
validation 参数验证 https://github.com/fashionbrot/validation
The newest version!
package com.github.fashionbrot.ognl;
import com.github.fashionbrot.util.Resources;
import ognl.DefaultClassResolver;
/**
* @author fashionbrot
*/
public class OgnlClassResolver extends DefaultClassResolver {
@Override
protected Class toClassForName(String className) {
return Resources.classForName(className);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy