disconf可以配置reload,当更改配置时自动刷新classpath下的配置文件.然而获取最新的值官方说明是加@DisconfFileItem注解放在属性的方法上,底层通过拦截器获取的. 但是每个属性都要定义一个属性,其实是一件很繁琐的事情. 所以,以下提供一种非官方实时获取最新值的方式. public class PropertiesUtils { private static final Logger logger = LoggerFactory.getLogger(Propertie
获取网络数据 let data = []; new Promise(function(resolve,reject){ axios.post('api.php').then(function(response){ resolve(response); },function(error){ reject({data:[]}); }); }).then(function(resolve){ console.log('数据来了'); console.log(resolve.data); data =
* 如何获取线程对象的名称呢? * public final String getName():获取线程的名称. * 如何设置线程对象的名称呢? * public final void setName(String name):设置线程的名称 * * 针对不是Thread类的子类中如何获取线程对象名称呢? * public static Thread currentThread():返回当前正在执行的线程对象 * Thread.currentThread().getName() public
<script type="text/javascript"> //need to wait until onload so body is available window.onload = function(){ function getWindowWidth(){ if (window.innerWidth){ return window.innerWidth; } else if (document.documentElement.clientWidth){ ret