Skip to content

Instantly share code, notes, and snippets.

@lubarinobr
Created November 22, 2019 16:55
Show Gist options
  • Save lubarinobr/a8a4f4d9a8d521acef0499e3d6036666 to your computer and use it in GitHub Desktop.
Save lubarinobr/a8a4f4d9a8d521acef0499e3d6036666 to your computer and use it in GitHub Desktop.
Custom facotry
public class Factory {
public getBean(Class theInterface) {
try {
Class clazz = Class.forName(theInterface.getName+"Impl");
return clazz.newInstance();
} catch (ReflectiveOperationException e) {
return null;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment