com.openthinks.libs.sql.entity.jpa.EntityReflectHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlibs.sql Show documentation
Show all versions of openlibs.sql Show documentation
The lib of java database ORM simple implementation.
The newest version!
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @Title: EntityReflectHandler.java
* @Package openthinks.libs.sql.entity.jpa
* @Description: TODO
* @author dailey
* @date 2012-11-6
* @version V1.0
*/
package com.openthinks.libs.sql.entity.jpa;
import java.lang.reflect.Field;
import org.apache.log4j.Logger;
import com.openthinks.libs.sql.entity.ColumnAttribute;
import com.openthinks.libs.sql.entity.ColumnAttributeMapping;
import com.openthinks.libs.sql.entity.Entity;
/**
* The simple {@link IReflectHandler} implementation for {@link Entity}
* @author dailey
*
*/
public class EntityReflectHandler extends JPAReflectHandler implements IReflectHandler {
Logger logger = Logger.getLogger(getClass());
@Override
public boolean handColumnField(T entity, String columnName, Object columnValue) {
// TODO Checker.require(entity).isExtendsFrom(Entity.class);
boolean isSuccess = super.handColumnField(entity, columnName, columnValue);
if (isSuccess) {
return true;
}
if (entity instanceof Entity) {
try {
((Entity) entity).set(columnName, columnValue);
isSuccess = true;
} catch (Exception e) {
isSuccess = false;
}
}
return isSuccess;
}
/**
* get the table name from the entity class name
*/
@Override
public String getEntityTableName(Class entityClazz) {
String tableName = super.getEntityTableName(entityClazz);
if (tableName == null) {
tableName = entityClazz.getSimpleName();
}
return tableName;
}
/**
* get the first field as primary id in entity class
*/
@Override
public String getEntityIDName(Class entityClazz) {
String idName = super.getEntityIDName(entityClazz);
if (idName == null) {
Field[] fields = entityClazz.getFields();
if (fields.length > 0) {
idName = fields[0].getName();
}
}
return idName;
}
@Override
public ColumnAttributeMapping parseEntityClass(Class entityClass) {
ColumnAttributeMapping columnAttributeMapping = super.parseEntityClass(entityClass);
if (columnAttributeMapping.isEmpty() && Entity.class.isAssignableFrom(entityClass)) {
try {
Entity entityInstance = (Entity) entityClass.newInstance();
for (ColumnAttribute columnA : entityInstance.getColumnAttributes()) {
columnAttributeMapping.map(columnA);
}
} catch (InstantiationException e) {
logger.error(e);
} catch (IllegalAccessException e) {
logger.error(e);
}
}
return columnAttributeMapping;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy