脚本校验,新功能开发结束,待测试

web_backend_develope
chenlw 9 years ago
parent 7901443ff3
commit 1c6a50561e

@ -283,4 +283,32 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
</where> </where>
</update> </update>
<update id="update" parameterType="com.platform.entities.DataInfoEntity">
UPDATE
data_info
<set>
<trim suffixOverrides=",">
<if test="dataPath != null and dataPath != ''">
data_path= #{dataPath},
</if>
<if test="extractStatus != null and extractStatus != ''">
extract_status= #{extractStatus},
</if>
<if test="payResultLast != null and payResultLast != ''">
checkout_pay_last= #{payResultLast},
</if>
<if test="execResultLast != null and execResultLast != ''">
checkout_indicate_last= #{execResultLast},
</if>
<if test="checkoutFlag != null and checkoutFlag != ''">
checkout_flag= #{checkoutFlag},
</if>
</trim>
</set>
<where>
id = #{id}
AND remove ='0'
</where>
</update>
</mapper> </mapper>

@ -18,8 +18,11 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
jdbcType="VARCHAR" /> jdbcType="VARCHAR" />
<result property="areaLevel" column="area_level" <result property="areaLevel" column="area_level"
javaType="string" jdbcType="VARCHAR" /> javaType="string" jdbcType="VARCHAR" />
<result property="dataVersion" column="data_version" javaType="string" <result property="sysVersion" column="sys_version" javaType="string"
jdbcType="VARCHAR" /> jdbcType="VARCHAR" />
<result property="dataVersion" column="data_version" javaType="int"
jdbcType="INTEGER" />
<result property="beginUseTime" column="begin_in_use" <result property="beginUseTime" column="begin_in_use"
javaType="string" jdbcType="VARCHAR" /> javaType="string" jdbcType="VARCHAR" />
<result property="functionDetails" column="function_details" javaType="string" <result property="functionDetails" column="function_details" javaType="string"
@ -58,6 +61,20 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
jdbcType="VARCHAR" /> jdbcType="VARCHAR" />
<result property="governmentDebtManage" column="government_debt" javaType="string" <result property="governmentDebtManage" column="government_debt" javaType="string"
jdbcType="VARCHAR" /> jdbcType="VARCHAR" />
<result property="collectingTime" column="collection_time" javaType="string"
jdbcType="VARCHAR" />
<result property="collUpdate" column="is_update" javaType="string"
jdbcType="VARCHAR" />
<!-- <result property="payResult" column="checkout_pay" javaType="string"
jdbcType="VARCHAR" />
<result property="execResult" column="checkout_indicate" javaType="string"
jdbcType="VARCHAR" />
<result property="payResultLast" column="checkout_pay_last" javaType="string"
jdbcType="VARCHAR" />
<result property="execResultLast" column="checkout_indicate_last" javaType="string"
jdbcType="VARCHAR" />
<result property="checkoutFlag" column="checkout_flag" javaType="string"
jdbcType="VARCHAR" /> -->
</resultMap> </resultMap>
<sql id="conditionsFilters"> <sql id="conditionsFilters">
<if test="cityName!=null"> <if test="cityName!=null">
@ -67,8 +84,8 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
AND AND
standard_data_details.district_name=#{districtName} standard_data_details.district_name=#{districtName}
</if> </if>
<if test="dataVersion !=null"> <if test="sysVersion !=null">
AND standard_data_details.data_version=#{dataVersion} AND standard_data_details.sys_version=#{sysVersion}
</if> </if>
<if test="systemName !=null"> <if test="systemName !=null">
AND standard_data_details.system_name=#{systemName} AND standard_data_details.system_name=#{systemName}
@ -82,13 +99,23 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
<!-- sql txt Base_Column_List --> <!-- sql txt Base_Column_List -->
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id,area_code,city_name,district_name,system_name,sys_code,area_level,data_version,begin_in_use,function_details, id,area_code,city_name,district_name,system_name,sys_code,area_level,sys_version,begin_in_use,function_details,
department_manager,manager_contacts,sys_developer_full_name,data_base_type,data_base_version, department_manager,manager_contacts,sys_developer_full_name,data_base_type,data_base_version,
is_budget_exec,is_budget_quota,is_collection,is_department_budget,total_budget_account, is_budget_exec,is_budget_quota,is_collection,is_department_budget,total_budget_account,
final_account_manage,report_form_manage,non_tax_revenue_manage,wage_system, final_account_manage,report_form_manage,non_tax_revenue_manage,wage_system,
analysis_of_financial_economic_prosperity,government_debt analysis_of_financial_economic_prosperity,government_debt
</sql> </sql>
<!-- sql txt find_city_Column_List -->
<sql id="find_city_Column_List">
d.id dataId,a.area_code areaCode,a.city_name cityName,a.district_name districtName,a.system_name sysName,a.sys_code sysCode,a.area_level areaLevel,a.sys_version sysVersion,a.begin_in_use beginUseTime,a.function_details functionDetails,
a.department_manager departmentManager,a.manager_contacts managerContacts,a.sys_developer_full_name developerFullName,a.data_base_type dataBaseType,a.data_base_version dataBaseVersion,
a.is_budget_exec budgetExecManage,a.is_budget_quota budgetQuotaManage,a.is_collection collection,a.is_department_budget departmentBudgetManage,a.total_budget_account totalBudgetAccount,
a.final_account_manage finalAccountManage,a.report_form_manage reportFormManage,a.non_tax_revenue_manage nonTaxManage,a.wage_system wageSystem,
a.analysis_of_financial_economic_prosperity analysisOfFinancialEconomicProsperity,a.government_debt governmentDebtManage,d.data_version dataVersion,d.collection_time collectingTime,l.is_update collUpdate,
d.checkout_indicate execResult,d.checkout_pay payResult,d.checkout_flag checkoutFlag,d.checkout_indicate_last execResultLast,d.checkout_pay_last payResultLast
</sql>
<!-- 获取数据符合筛选条件的全部记录信息 --> <!-- 获取数据符合筛选条件的全部记录信息 -->
<select id="getLimitedDataInfoEntities" parameterType="com.platform.entities.PagerOptions" <select id="getLimitedDataInfoEntities" parameterType="com.platform.entities.PagerOptions"
resultMap="getEntityByText"> resultMap="getEntityByText">
@ -142,7 +169,7 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
</select> </select>
<sql id="Batch_Column_List"> <sql id="Batch_Column_List">
area_code,sys_code,area_level,data_version,begin_in_use,function_details, area_code,sys_code,area_level,sys_version,begin_in_use,function_details,
department_manager,manager_contacts,sys_developer_full_name,data_base_type,data_base_version, department_manager,manager_contacts,sys_developer_full_name,data_base_type,data_base_version,
is_budget_exec,is_budget_quota,is_collection,is_department_budget,total_budget_account, is_budget_exec,is_budget_quota,is_collection,is_department_budget,total_budget_account,
final_account_manage,report_form_manage,non_tax_revenue_manage,wage_system, final_account_manage,report_form_manage,non_tax_revenue_manage,wage_system,
@ -165,12 +192,21 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
ORDER BY standard_data_details.area_code,standard_data_details.sys_code ORDER BY standard_data_details.area_code,standard_data_details.sys_code
</select> </select>
<select id="findByCity" resultType="com.platform.entities.CheckoutEntity" parameterType="com.platform.entities.PreDataInfo">
SELECT
<include refid="find_city_Column_List" />
FROM standard_data_details a left join collection_data_description l on a.area_code=l.regionalism_code AND a.sys_code=l.sys_code
left join data_info d on a.area_code=d.regionalism_code AND a.sys_code=d.system_code
WHERE a.is_collection='是' AND a.city_name=#{cityName}
ORDER BY a.area_code,a.sys_code,d.data_version
</select>
<!-- 批量插入 --> <!-- 批量插入 -->
<select id="insertBatch" parameterType="java.util.List"> <select id="insertBatch" parameterType="java.util.List">
INSERT INTO default_data_description ( <include refid="Batch_Column_List" /> ) INSERT INTO default_data_description ( <include refid="Batch_Column_List" /> )
VALUES VALUES
<foreach collection="list" item="item" index="index" separator=","> <foreach collection="list" item="item" index="index" separator=",">
(#{item.areaCode,jdbcType=VARCHAR},#{item.sysCode,jdbcType=INTEGER},#{item.areaLevel,jdbcType=VARCHAR},#{item.dataVersion,jdbcType=VARCHAR},#{item.beginUseTime},#{item.functionDetails}, (#{item.areaCode,jdbcType=VARCHAR},#{item.sysCode,jdbcType=INTEGER},#{item.areaLevel,jdbcType=VARCHAR},#{item.sysVersion,jdbcType=VARCHAR},#{item.beginUseTime},#{item.functionDetails},
#{item.departmentManager},#{item.managerContacts,jdbcType=VARCHAR},#{item.developerFullName,jdbcType=VARCHAR},#{item.dataBaseType,jdbcType=VARCHAR},#{item.dataBaseVersion,jdbcType=VARCHAR}, #{item.departmentManager},#{item.managerContacts,jdbcType=VARCHAR},#{item.developerFullName,jdbcType=VARCHAR},#{item.dataBaseType,jdbcType=VARCHAR},#{item.dataBaseVersion,jdbcType=VARCHAR},
#{item.budgetExecManage},#{item.budgetQuotaManage,jdbcType=VARCHAR},#{item.collection,jdbcType=VARCHAR},#{item.departmentBudgetManage,jdbcType=VARCHAR},#{item.totalBudgetAccount,jdbcType=VARCHAR}, #{item.budgetExecManage},#{item.budgetQuotaManage,jdbcType=VARCHAR},#{item.collection,jdbcType=VARCHAR},#{item.departmentBudgetManage,jdbcType=VARCHAR},#{item.totalBudgetAccount,jdbcType=VARCHAR},
#{item.finalAccountManage},#{item.reportFormManage,jdbcType=VARCHAR},#{item.nonTaxManage,jdbcType=VARCHAR},#{item.wageSystem,jdbcType=VARCHAR}, #{item.finalAccountManage},#{item.reportFormManage,jdbcType=VARCHAR},#{item.nonTaxManage,jdbcType=VARCHAR},#{item.wageSystem,jdbcType=VARCHAR},
@ -190,8 +226,8 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
<if test="areaLevel != null and areaLevel != ''"> <if test="areaLevel != null and areaLevel != ''">
a.area_level= #{areaLevel}, a.area_level= #{areaLevel},
</if> </if>
<if test="dataVersion != null and dataVersion != ''"> <if test="sysVersion != null and sysVersion != ''">
a.data_version= #{dataVersion}, a.sys_version= #{sysVersion},
</if> </if>
<if test="beginUseTime != null and beginUseTime != ''"> <if test="beginUseTime != null and beginUseTime != ''">
a.begin_in_use= #{beginUseTime}, a.begin_in_use= #{beginUseTime},
@ -256,6 +292,17 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
</where> </where>
</update> </update>
<!-- 更新字段 -->
<update id="updateCollection" parameterType="com.platform.entities.PreDataInfo">
UPDATE
collection_data_description a
set a.is_update=#{collUpdate}
where
a.regionalism_code = #{areaCode}
AND a.sys_code = #{sysCode}
AND a.remove ='0'
</update>
<select id="getAreaSysNameExistByAreaSysName" parameterType="java.util.List" resultType="java.lang.String"> <select id="getAreaSysNameExistByAreaSysName" parameterType="java.util.List" resultType="java.lang.String">
SELECT SELECT
CONCAT(area_code,',',system_name) CONCAT(area_code,',',system_name)
@ -267,5 +314,24 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
</foreach> </foreach>
</select> </select>
<select id="findStandardByCode" resultMap="getEntityByText" parameterType="com.platform.entities.PreDataInfo">
SELECT
<include refid="Base_Column_List" />
FROM standard_data_details
<where>
area_code = #{areaCode}
AND sys_code = #{sysCode}
</where>
</select>
<select id="findLastByCode" resultMap="getEntityByText" parameterType="com.platform.entities.PreDataInfo">
SELECT
<include refid="Base_Column_List" />
FROM collection_data_details
<where>
area_code = #{areaCode}
AND sys_code = #{sysCode}
</where>
</select>
</mapper> </mapper>

@ -0,0 +1,133 @@
package com.platform.controller;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import com.base.BaseController;
import com.platform.entities.CheckoutEntity;
import com.platform.entities.PreDataInfo;
import com.platform.service.ICheckoutService;
import com.platform.utils.Configs;
/** --
* @author chen
*
*/
@Controller
@RequestMapping("/checkout")
public class CheckoutController extends BaseController {
@SuppressWarnings("static-access")
public static Logger log = Configs.DAILY_ROLLING_LOGGER.getLogger(CheckoutController.class);
@Resource(name = "checkoutService")
private ICheckoutService checkoutService;
/**
*
* @return
* @throws Exception
*/
@ResponseBody
@RequestMapping("/findAll")
public ModelMap findAll() throws Exception {
log.info("---------/findAll--- ");
ModelMap modelMap = new ModelMap();
List<CheckoutEntity> result = checkoutService.findAll();
modelMap.addAttribute("data", result);
modelMap.addAttribute("length", result.size());
return modelMap;
}
/**
*
* @return
* @throws Exception
*/
@ResponseBody
@RequestMapping("/findByCity")
public ModelMap findByCity(@RequestBody String cityName, HttpServletRequest req, HttpServletResponse res) throws Exception {
log.info("---------/findByCity--- "+cityName);
ModelMap modelMap = new ModelMap();
List<CheckoutEntity> result = checkoutService.findByCity(cityName);
modelMap.addAttribute("data", result);
modelMap.addAttribute("length", result.size());
return modelMap;
}
/**
*
* @return
* @throws Exception
*/
@ResponseBody
@RequestMapping("/checkList")
public ModelMap checkList(@RequestBody List<CheckoutEntity> form, HttpServletRequest req, HttpServletResponse res) throws Exception {
ModelMap modelMap = new ModelMap();
if (null != form) {
log.info("---------/checkList--- "+ form.size());
List<CheckoutEntity> result = checkoutService.checkAll(form);
List<CheckoutEntity> data = new ArrayList<CheckoutEntity>();
modelMap.addAttribute("data", result);
modelMap.addAttribute("length", result.size());
}
else {
log.info("---------/checkList--- "+ form);
}
return modelMap;
}
/**
*
* @return
* @throws Exception
*/
@ResponseBody
@RequestMapping("/findDetails")
public ModelMap findDetails(@RequestBody CheckoutEntity form, HttpServletRequest req, HttpServletResponse res) throws Exception {
ModelMap modelMap = new ModelMap();
if (null != form) {
log.info("---------/findDetails--- "+ form);
Map<String, PreDataInfo> result = checkoutService.findDetail(form);
modelMap.addAllAttributes(result);
}
else {
log.info("---------/findDetails--- "+ form);
}
return modelMap;
}
/**
*
* @return
* @throws Exception
*/
@ResponseBody
@RequestMapping("/update")
public void update(@RequestBody PreDataInfo form, HttpServletRequest req, HttpServletResponse res) throws Exception {
if (null != form) {
log.info("---------/update--- "+ form);
int result = checkoutService.updateStandardInfo(form);
if (result == 0) {
res.setStatus(500);
}
}
else {
log.info("---------/update--- "+ form);
res.setStatus(500);
}
}
}

@ -50,6 +50,10 @@ import com.platform.utils.Configs;
import com.platform.utils.Constant; import com.platform.utils.Constant;
import com.platform.utils.UtilsHelper; import com.platform.utils.UtilsHelper;
/**
* @author chen
*
*/
@Controller @Controller
public class DataModelController extends BaseController { public class DataModelController extends BaseController {

@ -53,6 +53,10 @@ import com.platform.utils.HttpUtils;
import com.platform.utils.ThreadRemoveFile; import com.platform.utils.ThreadRemoveFile;
import com.platform.utils.UtilsHelper; import com.platform.utils.UtilsHelper;
/** --excel
* @author chen
*
*/
@Controller @Controller
@RequestMapping("/fileOperation") @RequestMapping("/fileOperation")
public class ExcelController extends BaseController{ public class ExcelController extends BaseController{

@ -76,7 +76,7 @@ public class FilePackageController extends BaseController {
public ModelMap findAll() throws Exception { public ModelMap findAll() throws Exception {
log.info("---------/findAll--- "); log.info("---------/findAll--- ");
ModelMap modelMap = new ModelMap(); ModelMap modelMap = new ModelMap();
List<SqlFileInfoEntity> result = scriptMakeService.FindAllFiles(); List<SqlFileInfoEntity> result = scriptMakeService.findAllFiles();
modelMap.addAttribute("data", result); modelMap.addAttribute("data", result);
modelMap.addAttribute("length", result.size()); modelMap.addAttribute("length", result.size());
return modelMap; return modelMap;
@ -124,7 +124,7 @@ public class FilePackageController extends BaseController {
ModelMap modelMap = new ModelMap(); ModelMap modelMap = new ModelMap();
Map<String, Object> result = scriptMakeService.handleSqlFile(type, opt, form.getContent(), form.getItem()); Map<String, Object> result = scriptMakeService.handleSqlFile(type, opt, form.getContent(), form.getItem());
modelMap.addAllAttributes(result); modelMap.addAllAttributes(result);
List<SqlFileInfoEntity> results = scriptMakeService.FindAllFiles(); List<SqlFileInfoEntity> results = scriptMakeService.findAllFiles();
modelMap.addAttribute("data", results); modelMap.addAttribute("data", results);
modelMap.addAttribute("length", results.size()); modelMap.addAttribute("length", results.size());
return modelMap; return modelMap;

@ -28,6 +28,8 @@ public interface DataInfoDao {
int save(DataInfoEntity data) throws Exception; int save(DataInfoEntity data) throws Exception;
int update(DataInfoEntity data) throws Exception;
int updateExtract(DataInfoEntity data) throws Exception; int updateExtract(DataInfoEntity data) throws Exception;
} }

@ -6,6 +6,7 @@ import java.util.Map;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository; import org.springframework.stereotype.Repository;
import com.platform.entities.CheckoutEntity;
import com.platform.entities.DataInfoEntity; import com.platform.entities.DataInfoEntity;
import com.platform.entities.DataInfoEntityMoveTmp; import com.platform.entities.DataInfoEntityMoveTmp;
import com.platform.entities.PagerOptions; import com.platform.entities.PagerOptions;
@ -26,10 +27,18 @@ public interface PreDataInfoDao {
List<PreDataInfo> findAllCollect()throws Exception; List<PreDataInfo> findAllCollect()throws Exception;
List<CheckoutEntity> findByCity(PreDataInfo pre)throws Exception;
void insertBatch(List<PreDataInfo> list) throws Exception; void insertBatch(List<PreDataInfo> list) throws Exception;
int update(PreDataInfo data) throws Exception; int update(PreDataInfo data) throws Exception;
int updateCollection(PreDataInfo data) throws Exception;
PreDataInfo findStandardByCode(PreDataInfo data) throws Exception;
PreDataInfo findLastByCode(PreDataInfo data) throws Exception;
/** /**
* @param list * @param list
* @return * @return

@ -1,6 +1,11 @@
package com.platform.entities; package com.platform.entities;
public class CheckoutEntity extends PreDataInfo { public class CheckoutEntity extends PreDataInfo implements Comparable<CheckoutEntity> {
/**
* dataInfo id
*/
private int dataId;
/** 验证结果 */ /** 验证结果 */
private String checkResult; private String checkResult;
@ -11,6 +16,34 @@ public class CheckoutEntity extends PreDataInfo {
/** 执行信息表 */ /** 执行信息表 */
private String execResult; private String execResult;
/** 支付信息表校验--汇总 */
private String payResultLast;
/** 执行信息表校验--汇总 */
private String execResultLast;
/** 是否进行了校验 */
private String checkoutFlag;
/**
* -
*/
private String mark;
/**
* @return the dataId
*/
public int getDataId() {
return dataId;
}
/**
* @param dataId the dataId to set
*/
public void setDataId(int dataId) {
this.dataId = dataId;
}
/** /**
* @return the checkResult * @return the checkResult
*/ */
@ -53,4 +86,69 @@ public class CheckoutEntity extends PreDataInfo {
this.execResult = execResult; this.execResult = execResult;
} }
/**
* @return the payResultLast
*/
public String getPayResultLast() {
return payResultLast;
}
/**
* @param payResultLast the payResultLast to set
*/
public void setPayResultLast(String payResultLast) {
this.payResultLast = payResultLast;
}
/**
* @return the execResultLast
*/
public String getExecResultLast() {
return execResultLast;
}
/**
* @param execResultLast the execResultLast to set
*/
public void setExecResultLast(String execResultLast) {
this.execResultLast = execResultLast;
}
/**
* @return the checkoutFlag
*/
public String getCheckoutFlag() {
return checkoutFlag;
}
/**
* @param checkoutFlag the checkoutFlag to set
*/
public void setCheckoutFlag(String checkoutFlag) {
this.checkoutFlag = checkoutFlag;
}
/**
* @return the mark
*/
public String getMark() {
return mark;
}
/**
* @param mark the mark to set
*/
public void setMark(String mark) {
this.mark = mark;
}
/** 按checkResult的状态排序 */
@Override
public int compareTo(CheckoutEntity arg0) {
if ("是".equals(arg0.getCheckResult())) {
return -1;
}
return 1;
}
} }

@ -39,12 +39,21 @@ public class DataInfoEntity {
private String mark; private String mark;
/** 支付信息表 */ /** 支付信息表校验--采集 */
private String payResult; private String payResult;
/** 执行信息表 */ /** 执行信息表校验--采集 */
private String execResult; private String execResult;
/** 支付信息表校验--汇总 */
private String payResultLast;
/** 执行信息表校验--汇总 */
private String execResultLast;
/** 是否进行了校验 */
private String checkoutFlag;
public DataInfoEntity() { public DataInfoEntity() {
} }
@ -317,6 +326,48 @@ public class DataInfoEntity {
this.execResult = execResult; this.execResult = execResult;
} }
/**
* @return the payResultLast
*/
public String getPayResultLast() {
return payResultLast;
}
/**
* @param payResultLast the payResultLast to set
*/
public void setPayResultLast(String payResultLast) {
this.payResultLast = payResultLast;
}
/**
* @return the execResultLast
*/
public String getExecResultLast() {
return execResultLast;
}
/**
* @param execResultLast the execResultLast to set
*/
public void setExecResultLast(String execResultLast) {
this.execResultLast = execResultLast;
}
/**
* @return the checkoutFlag
*/
public String getCheckoutFlag() {
return checkoutFlag;
}
/**
* @param checkoutFlag the checkoutFlag to set
*/
public void setCheckoutFlag(String checkoutFlag) {
this.checkoutFlag = checkoutFlag;
}
@Override @Override
public String toString() { public String toString() {
return "id=" + this.id + " ,regionalismCode=" + this.regionalismCode return "id=" + this.id + " ,regionalismCode=" + this.regionalismCode

@ -445,7 +445,7 @@ public class DefaultDataDescription {
using_time = pre.getBeginUseTime(); using_time = pre.getBeginUseTime();
sys_version = pre.getDataVersion(); sys_version = pre.getSysVersion();
sys_description = pre.getFunctionDetails(); sys_description = pre.getFunctionDetails();

@ -11,7 +11,7 @@ public class PreDataInfo {
private String updateTime; private String updateTime;
/** 是否更新 */ /** excel 是否更新 */
private String isupdate = "-"; private String isupdate = "-";
/** 是否采集 */ /** 是否采集 */
@ -33,7 +33,7 @@ public class PreDataInfo {
private String sysName; private String sysName;
/** 系统版本信息 */ /** 系统版本信息 */
private String dataVersion; private String sysVersion;
/** 投入使用时间 */ /** 投入使用时间 */
private String beginUseTime; private String beginUseTime;
@ -110,6 +110,15 @@ public class PreDataInfo {
/** 脚本文件名称列表 */ /** 脚本文件名称列表 */
private List<String> sqlList; private List<String> sqlList;
/** 数据版本 */
private int dataVersion;
/** 采集时间 */
private String collectingTime;
/** collection_data_description 是否有更新 */
private String collUpdate;
/** /**
* @return the id * @return the id
*/ */
@ -251,15 +260,15 @@ public class PreDataInfo {
/** /**
* @return the dataVersion * @return the dataVersion
*/ */
public String getDataVersion() { public String getSysVersion() {
return dataVersion; return sysVersion;
} }
/** /**
* @param dataVersion the dataVersion to set * @param dataVersion the dataVersion to set
*/ */
public void setDataVersion(String dataVersion) { public void setSysVersion(String sysVersion) {
this.dataVersion = dataVersion; this.sysVersion = sysVersion;
} }
/** /**
@ -611,6 +620,48 @@ public class PreDataInfo {
} }
} }
/**
* @return the dataVersion
*/
public int getDataVersion() {
return dataVersion;
}
/**
* @param dataVersion the dataVersion to set
*/
public void setDataVersion(int dataVersion) {
this.dataVersion = dataVersion;
}
/**
* @return the collectingTime
*/
public String getCollectingTime() {
return collectingTime;
}
/**
* @param collectingTime the collectingTime to set
*/
public void setCollectingTime(String collectingTime) {
this.collectingTime = collectingTime;
}
/**
* @return the isUpdate
*/
public String getCollUpdate() {
return collUpdate;
}
/**
* @param isUpdate the isUpdate to set
*/
public void setCollUpdate(String collUpdate) {
this.collUpdate = collUpdate;
}
/** /**
* @return the workRange * @return the workRange
*/ */
@ -618,10 +669,14 @@ public class PreDataInfo {
return workRange; return workRange;
} }
public void setWorkRange(List<String> workRange) {
this.workRange = workRange;
}
/** /**
* @param workRange the workRange to set * @param workRange the workRange to set
*/ */
public void setWorkRange(List<String> workRange) { public void reSetWorkRange(List<String> workRange) {
this.workRange = workRange; this.workRange = workRange;
if (null == this.workRange) { if (null == this.workRange) {
this.workRange = new ArrayList<String>(); this.workRange = new ArrayList<String>();
@ -657,4 +712,52 @@ public class PreDataInfo {
this.workRange.add("政府性债务管理"); this.workRange.add("政府性债务管理");
} }
} }
public void setProper() {
departmentBudgetManage = "否";
budgetQuotaManage = "否";
budgetExecManage = "否";
totalBudgetAccount = "否";
finalAccountManage = "否";
reportFormManage = "否";
nonTaxManage = "否";
wageSystem = "否";
analysisOfFinancialEconomicProsperity = "否";
governmentDebtManage = "否";
if (null == this.workRange) {
return;
}
if (workRange.contains("部门预算管理")) {
departmentBudgetManage = "是";
}
if (workRange.contains("预算指标管理")) {
budgetQuotaManage = "是";
}
if (workRange.contains("预算执行管理")) {
budgetExecManage = "是";
}
if (workRange.contains("总预算会计")) {
totalBudgetAccount = "是";
}
if (workRange.contains("决算管理")) {
finalAccountManage = "是";
}
if (workRange.contains("报表管理")) {
reportFormManage = "是";
}
if (workRange.contains("非税收入管理")) {
nonTaxManage = "是";
}
if (workRange.contains("工资统发系统")) {
wageSystem = "是";
}
if (workRange.contains("财政经济景气预测与分析")) {
analysisOfFinancialEconomicProsperity = "是";
}
if (workRange.contains("政府性债务管理")) {
governmentDebtManage = "是";
}
}
} }

@ -1,13 +0,0 @@
package com.platform.service;
import java.util.List;
import com.platform.entities.PreDataInfo;
public interface CheckoutService {
public List<PreDataInfo> findAll() throws Exception;
public void checkAll() throws Exception;
}

@ -0,0 +1,20 @@
package com.platform.service;
import java.util.List;
import java.util.Map;
import com.platform.entities.CheckoutEntity;
import com.platform.entities.PreDataInfo;
public interface ICheckoutService {
public List<CheckoutEntity> findAll() throws Exception;
public List<CheckoutEntity> checkAll(List<CheckoutEntity> list) throws Exception;
public int updateStandardInfo(PreDataInfo ck) throws Exception;
public Map<String, PreDataInfo> findDetail(CheckoutEntity ck) throws Exception;
public List<CheckoutEntity> findByCity(String city) throws Exception;
}

@ -13,7 +13,7 @@ public interface IScriptMakeService {
public int moveFiles(List<SqlFileInfoEntity> file) throws Exception; public int moveFiles(List<SqlFileInfoEntity> file) throws Exception;
public List<SqlFileInfoEntity> FindAllFiles() throws Exception; public List<SqlFileInfoEntity> findAllFiles() throws Exception;
public Map<String, Object> readSql(String name, SqlFileInfoEntity form); public Map<String, Object> readSql(String name, SqlFileInfoEntity form);

@ -1,22 +1,29 @@
package com.platform.service.impl; package com.platform.service.impl;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar; import java.util.Calendar;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import javax.annotation.Resource; import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import com.platform.dao.DataInfoDao; import com.platform.dao.DataInfoDao;
import com.platform.dao.PreDataInfoDao; import com.platform.dao.PreDataInfoDao;
import com.platform.entities.CheckoutEntity; import com.platform.entities.CheckoutEntity;
import com.platform.entities.DataInfoEntity; import com.platform.entities.DataInfoEntity;
import com.platform.entities.PreDataInfo; import com.platform.entities.PreDataInfo;
import com.platform.service.CheckoutService; import com.platform.service.ICheckoutService;
import com.platform.utils.BeanCopy; import com.platform.utils.BeanCopy;
import com.platform.utils.DateForm; import com.platform.utils.DateForm;
public class CheckoutServiceImpl implements CheckoutService { @Service(value = "checkoutService")
public class CheckoutServiceImpl implements ICheckoutService {
@Resource(name = "preDataInfoDao") @Resource(name = "preDataInfoDao")
private PreDataInfoDao preDataInfoDao; private PreDataInfoDao preDataInfoDao;
@ -25,7 +32,8 @@ public class CheckoutServiceImpl implements CheckoutService {
private DataInfoDao dataInfoDao; private DataInfoDao dataInfoDao;
@Override @Override
public List<PreDataInfo> findAll() throws Exception { public List<CheckoutEntity> findAll() throws Exception {
List<CheckoutEntity> checks = new ArrayList<CheckoutEntity>();
List<PreDataInfo> result = preDataInfoDao.findAllCollect(); List<PreDataInfo> result = preDataInfoDao.findAllCollect();
DataInfoEntity data = new DataInfoEntity(); DataInfoEntity data = new DataInfoEntity();
Calendar c2 = Calendar.getInstance(); Calendar c2 = Calendar.getInstance();
@ -50,19 +58,56 @@ public class CheckoutServiceImpl implements CheckoutService {
String key = pre.getAreaCode().toLowerCase()+"_"+ pre.getSysCode(); String key = pre.getAreaCode().toLowerCase()+"_"+ pre.getSysCode();
DataInfoEntity dataInfo = dataMap.get(key); DataInfoEntity dataInfo = dataMap.get(key);
CheckoutEntity ck = new CheckoutEntity(); CheckoutEntity ck = new CheckoutEntity();
BeanCopy.copyField(pre, ck); BeanCopy.copyBean(pre, ck);
if (null != dataInfo) {
String pay = dataInfo.getPayResult(); String pay = dataInfo.getPayResult();
String exec = dataInfo.getExecResult(); String exec = dataInfo.getExecResult();
ck.setPayResult(pay); ck.setPayResult(isY(pay));
ck.setExecResult(exec); ck.setExecResult(isY(exec));
ck.setCheckResult(isY(pay,exec)); ck.setCheckResult(isY(pay,exec));
} }
return result; else {
ck.setPayResult(isY(null));
ck.setExecResult(isY(null));
ck.setCheckResult(isY(null));
ck.setCollection("否");
}
checks.add(ck);
}
//排序 按 checkResult 排序
Collections.sort(checks);
return checks;
} }
@Override @Override
public void checkAll() { public List<CheckoutEntity> checkAll(List<CheckoutEntity> list) throws Exception {
List<CheckoutEntity> result = new ArrayList<CheckoutEntity>();
if (list.size() > 0) {
result = findByCity(list.get(0).getCityName());
}
Map<String, CheckoutEntity> map = new HashMap<String, CheckoutEntity>();
for (CheckoutEntity checkoutEntity : list) {
checkOne(checkoutEntity);
map.put(checkoutEntity.getAreaCode()+ "_" +checkoutEntity.getSysCode()+ "_" +checkoutEntity.getDataVersion(),checkoutEntity);
}
for (int i = 0; i < result.size(); i++) {
CheckoutEntity checkoutEntity = result.get(i);
String area_sys = checkoutEntity.getAreaCode()+ "_" +checkoutEntity.getSysCode()+ "_" +checkoutEntity.getDataVersion();
if (map.containsKey(area_sys)) {
result.set(i, map.get(area_sys));
}
}
// for (CheckoutEntity checkoutEntity : list) {
// DataInfoEntity data = new DataInfoEntity();
// checkOne(checkoutEntity);
// data.setId(checkoutEntity.getDataId());
// data.setPayResultLast(checkoutEntity.getPayResultLast());
// data.setExecResultLast(checkoutEntity.getExecResultLast());
// data.setCheckoutFlag(checkoutEntity.getCheckoutFlag());
// dataInfoDao.update(data);
// }
return result;
} }
private int getMonBeforeHalfYear(int num){ private int getMonBeforeHalfYear(int num){
@ -74,11 +119,214 @@ public class CheckoutServiceImpl implements CheckoutService {
} }
private String isY(String str1, String str2) { private String isY(String str1, String str2) {
String r = "n"; String r = "";
if (null !=str2 && null !=str1 && str1.equals(str2) && "y".equals(str1.toLowerCase())) { if (null !=str2 && null !=str1 && str1.equals(str2) && "y".equals(str1.toLowerCase())) {
r = "y"; r = "是";
}
return r;
}
private String isY(String str1) {
if (null != str1 && "y".equals(str1.toLowerCase())) {
return "是";
}
else {
return "否";
}
}
/**
* @param ck
* @return
*/
private CheckoutEntity checkOne(CheckoutEntity ck) {
String pay = ck.getPayResult();
String exec = ck.getExecResult();
ck.setPayResultLast(isY(pay));
ck.setExecResultLast(isY(exec));
ck.setCheckResult(isY(pay, exec));
// 1已校验
ck.setCheckoutFlag("1");
return ck;
} }
@Override
public List<CheckoutEntity> findByCity(String city) throws Exception {
CheckoutEntity cksql = new CheckoutEntity();
Calendar c2 = Calendar.getInstance();
// 时间设置为 半年前的时间
c2.set(Calendar.MONTH, getMonBeforeHalfYear(c2.get(Calendar.MONTH)));
String time = DateForm.date2StringByDay(c2.getTime());
cksql.setCollectingTime(time);
cksql.setCityName(city);
List<CheckoutEntity> resul = new ArrayList<CheckoutEntity>();
List<CheckoutEntity> list = preDataInfoDao.findByCity(cksql);
int length = list.size();
for (int i = 0; i < length; i++) {
CheckoutEntity preDataInfo = list.get(i);
if (null != preDataInfo.getPayResultLast() &&
preDataInfo.getPayResultLast().equals(preDataInfo.getExecResultLast()) &&
"是".equals(preDataInfo.getExecResultLast())) {
preDataInfo.setCheckResult("是");
}else if(null != preDataInfo.getPayResultLast() && null != preDataInfo.getExecResultLast() && !"-".equals(preDataInfo.getPayResultLast()) && !"-".equals(preDataInfo.getExecResultLast())){
preDataInfo.setCheckResult("否");
}
preDataInfo.setId(i);
preDataInfo.setCollUpdate(isY(preDataInfo.getCollUpdate()));
if (preDataInfo.getDataVersion() < 1) {
preDataInfo.setCollection("否");
}
if (null != preDataInfo.getCollectingTime()) {
if (c2.getTime().before(DateForm.string2DateByDay(preDataInfo.getCollectingTime()))) {
resul.add(preDataInfo);
}
}
else{
resul.add(preDataInfo);
}
}
return resul;
}
@Override
public int updateStandardInfo(PreDataInfo ck) throws Exception {
ck.setProper();
String areaCode = ck.getAreaCode();
int sysCode = ck.getSysCode();
//对比字段 -- 采集描述的 更新字段是否 改为不更新
PreDataInfo data = new CheckoutEntity();
data.setAreaCode(areaCode);
data.setSysCode(sysCode);
PreDataInfo data2 = preDataInfoDao.findLastByCode(data);
data2.setCollUpdate("n");
//对比
if (checkField(ck, data2) && checkWorkRange(ck, data2)) {
preDataInfoDao.updateCollection(data2);
}
int r = preDataInfoDao.update(ck);
return r; return r;
} }
@Override
public Map<String, PreDataInfo> findDetail(CheckoutEntity ck)
throws Exception {
Map<String, PreDataInfo> map = new HashMap<String, PreDataInfo>();
PreDataInfo data = new CheckoutEntity();
String areaCode = ck.getAreaCode();
int sysCode = ck.getSysCode();
data.setAreaCode(areaCode);
data.setSysCode(sysCode);
PreDataInfo data1 = preDataInfoDao.findStandardByCode(data);
data1.reSetWorkRange(new ArrayList<String>());
map.put("data1", data1);
data.setAreaCode(areaCode);
data.setSysCode(sysCode);
PreDataInfo data2 = preDataInfoDao.findLastByCode(data);
// 对比字段
if (data1.getFunctionDetails().equals(data2.getFunctionDetails())) {
data2.setFunctionDetails("");
}
if (data1.getAreaLevel().equals(data2.getAreaLevel())) {
data2.setAreaLevel("");
}
if (data1.getBeginUseTime().equals(data2.getBeginUseTime())) {
data2.setBeginUseTime("");
}
if (data1.getDataBaseType().equals(data2.getDataBaseType())) {
data2.setDataBaseType("");
}
if (data1.getDataBaseVersion().equals(data2.getDataBaseVersion())) {
data2.setDataBaseVersion("");
}
if (data1.getDeveloperFullName().equals(data2.getDeveloperFullName())) {
data2.setDeveloperFullName("");
}
if (data1.getDepartmentManager().equals(data2.getDepartmentManager())) {
data2.setDepartmentManager("");
}
if (data1.getManagerContacts().equals(data2.getManagerContacts())) {
data2.setManagerContacts("");
}
if (data1.getSysVersion().equals(data2.getSysVersion())) {
data2.setSysVersion("");
}
if(!checkWorkRange(data1, data2)){
data2.reSetWorkRange(null);
}
map.put("data2", data2);
return map;
}
/** true false
* @param data1
* @param data2
* @return
*/
private boolean checkWorkRange(PreDataInfo data1, PreDataInfo data2) {
if (!data1.getDepartmentBudgetManage().equals(data2.getDepartmentBudgetManage())) {
return false;
}
if (!data1.getBudgetQuotaManage().equals(data2.getBudgetQuotaManage())) {
return false;
}
if (!data1.getBudgetExecManage().equals(data2.getBudgetExecManage())) {
return false;
}
if (!data1.getTotalBudgetAccount().equals(data2.getTotalBudgetAccount())) {
return false;
}
if (!data1.getFinalAccountManage().equals(data2.getFinalAccountManage())) {
return false;
}
if (!data1.getReportFormManage().equals(data2.getReportFormManage())) {
return false;
}
if (!data1.getNonTaxManage().equals(data2.getNonTaxManage())) {
return false;
}
if (!data1.getWageSystem().equals(data2.getWageSystem())) {
return false;
}
if (!data1.getAnalysisOfFinancialEconomicProsperity().equals(data2.getAnalysisOfFinancialEconomicProsperity())) {
return false;
}
if (!data1.getGovernmentDebtManage().equals(data2.getGovernmentDebtManage())) {
return false;
}
return true;
}
private boolean checkField(PreDataInfo data1, PreDataInfo data2) {
if (!data1.getFunctionDetails().equals(data2.getFunctionDetails())) {
return false;
}
if (!data1.getAreaLevel().equals(data2.getAreaLevel())) {
return false;
}
if (!data1.getBeginUseTime().equals(data2.getBeginUseTime())) {
return false;
}
if (!data1.getDataBaseType().equals(data2.getDataBaseType())) {
return false;
}
if (!data1.getDataBaseVersion().equals(data2.getDataBaseVersion())) {
return false;
}
if (!data1.getDeveloperFullName().equals(data2.getDeveloperFullName())) {
return false;
}
if (!data1.getDepartmentManager().equals(data2.getDepartmentManager())) {
return false;
}
if (!data1.getManagerContacts().equals(data2.getManagerContacts())) {
return false;
}
if (!data1.getSysVersion().equals(data2.getSysVersion())) {
return false;
}
return true;
}
} }

@ -52,7 +52,7 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
Configs.SQL_SCRIPT_PATH_STANDARD); Configs.SQL_SCRIPT_PATH_STANDARD);
setScript(result, sqlFilePathsStandard); setScript(result, sqlFilePathsStandard);
for (PreDataInfo preDataInfo : result) { for (PreDataInfo preDataInfo : result) {
preDataInfo.setWorkRange(new ArrayList<String>()); preDataInfo.reSetWorkRange(new ArrayList<String>());
preDataInfo.setSqlList(new ArrayList<String>()); preDataInfo.setSqlList(new ArrayList<String>());
} }
return result; return result;
@ -106,7 +106,7 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
try { try {
PreDataInfo pre = new PreDataInfo(); PreDataInfo pre = new PreDataInfo();
//excel数据 --> java bean //excel数据 --> java bean
List<PreDataInfo> subPreData = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, pre, "id", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList"); List<PreDataInfo> subPreData = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, pre, "id", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList", "dataVersion", "collectingTime", "collUpdate");
if (null != subPreData && subPreData.size() > 0) { if (null != subPreData && subPreData.size() > 0) {
//是否是 同一个县区的 系统--是则 加入 //是否是 同一个县区的 系统--是则 加入
boolean isSameArea = true; boolean isSameArea = true;
@ -263,7 +263,7 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
XSSFWorkbook result = null; XSSFWorkbook result = null;
try { try {
workbook = new XSSFWorkbook(res.getInputStream()); workbook = new XSSFWorkbook(res.getInputStream());
result = ExcelOperation.writeExcelTemplate(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, 25, list, "id", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList"); result = ExcelOperation.writeExcelTemplate(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, 25, list, "id", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList", "dataVersion", "collectingTime", "collUpdate");
} catch (IllegalArgumentException } catch (IllegalArgumentException
| IllegalAccessException | IOException e) { | IllegalAccessException | IOException e) {
errList.add(e.getMessage()); errList.add(e.getMessage());

@ -1,5 +1,6 @@
package com.platform.service.impl; package com.platform.service.impl;
import java.beans.IntrospectionException;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.File; import java.io.File;
import java.io.FileInputStream; import java.io.FileInputStream;
@ -96,14 +97,14 @@ public class ScriptMakeService implements IScriptMakeService {
XmlOperationByDom4j XmlOperationByDom4j
.createXml(FileOperateHelper.addLastSeparator(areaPath) .createXml(FileOperateHelper.addLastSeparator(areaPath)
+ key + ".xml", defList, "Data_info", "workRange"); + key + ".xml", defList, "Data_info", "id", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList", "dataVersion", "collectingTime", "collUpdate");
} }
log.info("makeXml--end"); log.info("makeXml--end");
return 1; return 1;
} }
@Override @Override
public List<SqlFileInfoEntity> FindAllFiles() throws Exception { public List<SqlFileInfoEntity> findAllFiles() throws Exception {
List<PreDataInfo> systemDataInfo = preDataInfoDao.findAll(); List<PreDataInfo> systemDataInfo = preDataInfoDao.findAll();
// 查找 Configs.SQL_SCRIPT_PATH_LAST 路径下的 所有的文件:路径 // 查找 Configs.SQL_SCRIPT_PATH_LAST 路径下的 所有的文件:路径
Map<String, String> sqlFilePathsLast = new HashMap<String, String>(); Map<String, String> sqlFilePathsLast = new HashMap<String, String>();
@ -317,6 +318,7 @@ public class ScriptMakeService implements IScriptMakeService {
myfile, ".sql"); myfile, ".sql");
myfile.setCkPayScriptPathLast(payPathLast); myfile.setCkPayScriptPathLast(payPathLast);
// 设置 状态 // 设置 状态
if (null != myfile.getDataBaseType()) {
if ("ORACLE".equals(myfile.getDataBaseType().toUpperCase())) { if ("ORACLE".equals(myfile.getDataBaseType().toUpperCase())) {
myfile.setUserTableStatus(getStatus( myfile.setUserTableStatus(getStatus(
myfile.getUserTableScriptPathStandard(), myfile.getUserTableScriptPathStandard(),
@ -324,6 +326,7 @@ public class ScriptMakeService implements IScriptMakeService {
} else { } else {
myfile.setUserTableStatus(4); myfile.setUserTableStatus(4);
} }
}
myfile.setCkIndicateStatus(getStatus( myfile.setCkIndicateStatus(getStatus(
myfile.getCkIndicateScriptPathStandard(), myfile.getCkIndicateScriptPathStandard(),
myfile.getCkIndicateScriptPathLast())); myfile.getCkIndicateScriptPathLast()));

@ -1,5 +1,9 @@
package com.platform.utils; package com.platform.utils;
import java.beans.BeanInfo;
import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Field; import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method; import java.lang.reflect.Method;
@ -26,7 +30,7 @@ public class BeanCopy {
* @throws NoSuchFieldException * @throws NoSuchFieldException
* @throws SecurityException * @throws SecurityException
*/ */
public static void copyBean(Object source, Object dst, String... params){ public static synchronized void copyBean(Object source, Object dst, String... params){
if (dst.getClass().getSuperclass() == source.getClass()) { if (dst.getClass().getSuperclass() == source.getClass()) {
fatherCopyChild(source, dst, params); fatherCopyChild(source, dst, params);
} }
@ -63,7 +67,37 @@ public class BeanCopy {
} }
public static void copyField(Object src, Object dst,String... filter) { public static synchronized void copyField(Object src, Object dst,String... filter) throws IntrospectionException {
List<String> filters = Arrays.asList(filter);
BeanInfo dstBeanInfo = Introspector.getBeanInfo(dst.getClass()); // 获取类属性
// Object obj = type.newInstance(); // 创建 JavaBean 对象
BeanInfo srcBeanInfo = Introspector.getBeanInfo(src.getClass()); // 获取类属性
PropertyDescriptor[] srcPropertyDescriptors = srcBeanInfo.getPropertyDescriptors();
for (PropertyDescriptor property : srcPropertyDescriptors) {
String pName = property.getName();
if (filters.contains(pName)) {
continue;
}
if (!"class".equals(pName)) {
Method readMethod = property.getReadMethod();
try {
Object result = readMethod.invoke(src, new Object[0]);
if (null == result) {
continue;
}
property.getWriteMethod().invoke(dst, new Object[]{result});
} catch (IllegalAccessException e) {
log.error(pName + " Access is false : AccessException");
} catch (IllegalArgumentException e) {
log.error(pName + " is inexist or null or OutOfRange : ArgumentException ");
} catch (InvocationTargetException e) {
log.error(pName + " is Invocation Exception");
}
}
}
}
public static synchronized void copyFieldERR(Object src, Object dst,String... filter) {
List<String> filters = Arrays.asList(filter); List<String> filters = Arrays.asList(filter);
List<Field> fields = new ArrayList<Field>(); List<Field> fields = new ArrayList<Field>();
Class<?> classobj = src.getClass(); Class<?> classobj = src.getClass();
@ -76,18 +110,27 @@ public class BeanCopy {
fields = findFatherField(classobj, fields); fields = findFatherField(classobj, fields);
} }
for (Field field : fields) { for (Field field : fields) {
if (filters.contains(field.getName())) { String name = field.getName();
if (filters.contains(name)) {
continue; continue;
} }
// dst obj's property set value // dst obj's property set value
try { try {
field.set(dst, field.get(src)); Method m = src.getClass().getMethod("get"+upperHeadChar(name));
Object value = m.invoke(src);
if (null != value)
field.set(dst, value);
// field.set(dst, field.get(src));
} catch (SecurityException e) { } catch (SecurityException e) {
log.error(field.getName() + " is unsafe : SecurityException"); log.error(field.getName() + " is unsafe : SecurityException");
} catch (IllegalArgumentException e) { } catch (IllegalArgumentException e) {
log.error(field.getName() + " is inexist or null or OutOfRange : ArgumentException "); log.error(field.getName() + " is inexist or null or OutOfRange : ArgumentException ");
} catch (IllegalAccessException e) { } catch (IllegalAccessException e) {
log.error(field.getName() + " Access is false : AccessException"); log.error(field.getName() + " Access is false : AccessException");
} catch (NoSuchMethodException e) {
log.error(e.getMessage());
} catch (InvocationTargetException e) {
log.error(e.getMessage());
} }
} }
} }

Loading…
Cancel
Save