【python】求方差过程中报错'numpy.float64' object has no attribute 'mavg'
发布网友
发布时间:2022-05-15 17:02
我来回答
共1个回答
热心网友
时间:2024-02-25 11:31
可以扩展Spring的PropertyPlaceholderConfigurer,摘录别人一段代码你参考
public class DecryptPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer{
/**
* 重写父类方法,解密指定属性名对应的属性值
*/
@Override
protected String convertProperty(String propertyName,String propertyValue){
if(isEncryptPropertyVal(propertyName)){
return DesUtils.getDecryptString(propertyValue);//调用解密方法