本文整理汇总了Java中org.febit.util.Petite类的典型用法代码示例。如果您正苦于以下问题:Java Petite类的具体用法?Java Petite怎么用?Java Petite使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Petite类属于org.febit.util包,在下文中一共展示了Petite类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import org.febit.util.Petite; //导入依赖的package包/类
@Petite.Init
public void init() {
this.templateEngine = Engine.create(engineProps);
for (String item : tmpls) {
if (item.startsWith("#")) {
continue;
}
if (item.endsWith(".each")) {
tableTemplates.add(item);
} else {
commonTemplates.add(item);
}
}
Logger.info("Common Templates amount: " + commonTemplates.size());
Logger.info("Table Templates amount: " + tableTemplates.size());
}
示例2: init
import org.febit.util.Petite; //导入依赖的package包/类
@Petite.Init
protected void init() {
LcInitService initService = Services.get(LcInitService.class);
_entityType = (Class<E>) ReflectUtil.getRawType(LcService.class.getTypeParameters()[0], getClass());
_table = LcApiClient.getEntityTableName(_entityType);
_client = initService.getLcClient(_entityType);
}
示例3: init
import org.febit.util.Petite; //导入依赖的package包/类
@Petite.Init
public void init() {
_client = LcApiClient.builder()
.appId(appId)
.masterKey(masterKey)
.appKey(appKey)
.build();
}
示例4: init
import org.febit.util.Petite; //导入依赖的package包/类
@Petite.Init
public void init() {
if (renders != null) {
for (Render render : renders) {
if (render instanceof MatchTypes) {
for (Class type : ((MatchTypes) render).matchTypes()) {
renderCache.put(type, render);
}
}
renderCache.put(render.getClass(), render);
}
}
}
示例5: init
import org.febit.util.Petite; //导入依赖的package包/类
@Petite.Init
public void init() {
if (discards != null) {
this._discardCaching.addAll(discards);
}
initBasePaths();
initDefaultWrappers();
}
示例6: init
import org.febit.util.Petite; //导入依赖的package包/类
@Petite.Init
public void init() {
for (Argument argument : arguments) {
for (Class type : argument.matchTypes()) {
this.argumentCache.put(type, argument);
}
}
}
示例7: newInstance
import org.febit.util.Petite; //导入依赖的package包/类
@Override
public Object newInstance(Class<?> type, Petite petite) {
if (!isSupportType(type)) {
return null;
}
if (type.isInterface()) {
return null;
}
return ClassUtil.newInstance(type);
}
示例8: newInstance
import org.febit.util.Petite; //导入依赖的package包/类
@Override
public Object newInstance(Class<?> type, Petite petite) {
if (!isSupportType(type)) {
return null;
}
if (ClassUtil.isAbstract(type)) {
return null;
}
return ClassUtil.newInstance(type);
}
示例9: initPetite
import org.febit.util.Petite; //导入依赖的package包/类
protected void initPetite() {
LOG.info("Loaded props: {}", props.getModulesString());
this.petite = Petite.builder()
.addProps(props)
.addGlobalBean(this)
.buildWithServices();
this.petite.register("app", this);
}
示例10: init
import org.febit.util.Petite; //导入依赖的package包/类
@Petite.Init
public void init() {
if (chars == null) {
chars = "0123456789".toCharArray();
}
}
示例11: petite
import org.febit.util.Petite; //导入依赖的package包/类
public static Petite petite() {
return _instance.getPetite();
}
示例12: initDao
import org.febit.util.Petite; //导入依赖的package包/类
@Petite.Init
@SuppressWarnings("unchecked")
protected void initDao() {
Class<E> entityType = (Class<E>) ReflectUtil.getRawType(ArangoService.class.getTypeParameters()[0], getClass());
this.dao = Services.get(ArangoInitService.class).createDao(entityType);
}
示例13: setPetite
import org.febit.util.Petite; //导入依赖的package包/类
public static void setPetite(Petite petite) {
Services.PETITE = petite;
}
示例14: getPetite
import org.febit.util.Petite; //导入依赖的package包/类
public Petite getPetite() {
return this.petite;
}
示例15: petite
import org.febit.util.Petite; //导入依赖的package包/类
public static Petite petite() {
if (_petite == null) {
throw new IllegalStateException("Petite hadn't yet been initialized!");
}
return _petite;
}