com.alibaba.cola.domain.DomainFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cola-core Show documentation
Show all versions of cola-core Show documentation
Cola framework core components
package com.alibaba.cola.domain;
import com.alibaba.cola.common.ApplicationContextHelper;
/**
* DomainFactory
*
* @author Frank Zhang
* @date 2019-01-03 2:41 PM
*/
public class DomainFactory {
public static T create(Class entityClz){
return ApplicationContextHelper.getBean(entityClz);
}
public static T getBean(Class entityClz){
return ApplicationContextHelper.getBean(entityClz);
}
}