java将配置信息写在数据库(利用反射)

Posted chengjunde

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java将配置信息写在数据库(利用反射)相关的知识,希望对你有一定的参考价值。

Demo出处:

1. package com.fpx.pcs.prealert.process.xml.service.impl;

public class CainiaoPushMessageServiceImpl implements ICainiaoPushMessageService {

@Resource

private CommonImpl commonImpl;

@Override
public ResultMessage execute(String xml, String msg_type, String packageCarrierType, String countryCode) {

CaiNiaoCallBackConfig config=commonImpl.getConfig("CaiNiaoCallBackConfig",CaiNiaoCallBackConfig.class);

}

2.---CaiNiaoCallBackConfig 类---------------------

@data 

public class CaiNiaoCallBackConfig implements Serializable{

private static final long serialVersionUID=1L;

private String CONSO3PLcooperationCode;

private String CONSO3PLencryprDigest;

private String CONSO3PLreturnUrl;

}

3.getConfig 写法

public <T> T getConfig(String configName,Class<T> targetClass){

List<SysParameterPO> configs=getListByName(configName);

if(CollectionUtils.isEmpty(configs)){

   return null;

}

T t=null;

try{

  t=targetClass.newInstance();

for(SysParameterPO config :configs){

 try{

Method method=t.getClass().getMethod("set"+config.getCode(),String.class);

if(method !=null){

method.invoke(t,config.getvalue());

}

catch(Exception e)

}

catch(Exception e)

{

 

}

}

}

catch(InstantiationException  | illegeAccessException e){

 e.printStatckTrace();

}

catch(SecurityException e)

{

 e.printStackTrace();

}

 

 

}


以上是关于java将配置信息写在数据库(利用反射)的主要内容,如果未能解决你的问题,请参考以下文章

Java反射机制使用场景

Spring 注解

spring之注解构造IOC

Spring的注解配置与XML配置之间的比较

spring 注解是有啥作用

spring注解