HystrixTimeout设置小记

源码如下,看完包会

protected static HystrixCommandProperties.Setter createSetter(IClientConfig config,
			String commandKey, ZuulProperties zuulProperties) {
	//获取HystrixTimeout,设置HystrixCommand的Setter
	int hystrixTimeout = getHystrixTimeout(config, commandKey);
	return HystrixCommandProperties.Setter()
			.withExecutionIsolationStrategy(
					zuulProperties.getRibbonIsolationStrategy())
			.withExecutionTimeoutInMilliseconds(hystrixTimeout);
}

protected static int getHystrixTimeout(IClientConfig config, String commandKey) {
	int ribbonTimeout = getRibbonTimeout(config, commandKey);
	DynamicPropertyFactory dynamicPropertyFactory = DynamicPropertyFactory
			.getInstance();
	int defaultHystrixTimeout = dynamicPropertyFactory.getIntProperty(
			"hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds",
			0).get();
	int commandHystrixTimeout = dynamicPropertyFactory
			.getIntProperty("hystrix.command." + commandKey
					+ ".execution.isolation.thread.timeoutInMilliseconds", 0)
			.get();
	int hystrixTimeout;
	if (commandHystrixTimeout > 0) {
		hystrixTimeout = commandHystrixTimeout;
	}
	else if (defaultHystrixTimeout > 0) {
		hystrixTimeout = defaultHystrixTimeout;
	}
	else {
		hystrixTimeout = ribbonTimeout;
	}
	if (hystrixTimeout < ribbonTimeout) {
		LOGGER.warn("The Hystrix timeout of " + hystrixTimeout + "ms for the command "
				+ commandKey
				+ " is set lower than the combination of the Ribbon read and connect timeout, "
				+ ribbonTimeout + "ms.");
	}
	return hystrixTimeout;
}

protected static int getRibbonTimeout(IClientConfig config, String commandKey) {
	int ribbonTimeout;
	if (config == null) {
		ribbonTimeout = RibbonClientConfiguration.DEFAULT_READ_TIMEOUT
				+ RibbonClientConfiguration.DEFAULT_CONNECT_TIMEOUT;
	}
	else {
		int ribbonReadTimeout = getTimeout(config, commandKey, "ReadTimeout",
				IClientConfigKey.Keys.ReadTimeout,
				//默认1000
				RibbonClientConfiguration.DEFAULT_READ_TIMEOUT);
		int ribbonConnectTimeout = getTimeout(config, commandKey, "ConnectTimeout",
				IClientConfigKey.Keys.ConnectTimeout,
				//默认1000
				RibbonClientConfiguration.DEFAULT_CONNECT_TIMEOUT);
		int maxAutoRetries = getTimeout(config, commandKey, "MaxAutoRetries",
				IClientConfigKey.Keys.MaxAutoRetries,
				//默认0
				DefaultClientConfigImpl.DEFAULT_MAX_AUTO_RETRIES);
		int maxAutoRetriesNextServer = getTimeout(config, commandKey,
				"MaxAutoRetriesNextServer",
				IClientConfigKey.Keys.MaxAutoRetriesNextServer,
				//默认1
				DefaultClientConfigImpl.DEFAULT_MAX_AUTO_RETRIES_NEXT_SERVER);
		ribbonTimeout = (ribbonReadTimeout + ribbonConnectTimeout)
				* (maxAutoRetries + 1) * (maxAutoRetriesNextServer + 1);
	}
	return ribbonTimeout;
}

private static int getTimeout(IClientConfig config, String commandKey,
		String property, IClientConfigKey<Integer> configKey, int defaultValue) {
	DynamicPropertyFactory dynamicPropertyFactory = DynamicPropertyFactory
			.getInstance();
	return dynamicPropertyFactory
			.getIntProperty(commandKey + "." + config.getNameSpace() + "." + property,
					config.get(configKey, defaultValue))
			.get();
}
### 使用 UniApp 开发小记账本应用程序 #### 项目概述 生活记账小程序通过前端 Vue 和 UniApp 设计开发,后端采用 SpringBoot 提供数据接口支持。主要功能模块包括首页展示、分类记账以及微信登录状态管理[^1]。 #### 创建新项目 首先安装 HBuilderX 或者其他 IDE 工具来创建一个新的 UniApp 项目: ```bash npm install -g @dcloudio/uni-cli uni create myAccountBookProject ``` 进入项目目录并初始化必要的配置文件。 #### 配置 App.vue 生命周期函数 为了更好地控制应用生命周期,在 `App.vue` 中定义如下几个重要钩子函数用于处理不同场景下的逻辑操作: - **onLaunch**: 当整个程序启动时调用此方法, 可以在这里做一些全局性的初始化工作. - **onShow**: 页面每次从前台切到后台再返回前台都会触发这个事件, 合适用来刷新某些实时变化的内容. - **onHide**: 对应于当用户点击 Home 键使 APP 进入后台运行模式时执行的动作. 这些设置有助于提升用户体验流畅度和响应速度[^2]. #### 数据绑定与交互实现 确保所有的业务逻辑都放置在 methods 下面,并且避免 data 属性名称同 method 名冲突以免造成不必要的错误;另外注意检查 HTML 标签内部是否存在重复属性声明尤其是集成第三方 UI 组件库 uView-ui 的时候要格外小心[^3]: ```html <template> <!-- 记录条目输入框 --> </template> <script> export default { name: 'RecordEntry', data() { return { recordType: '', amount: null, date: '' } }, methods:{ addNewRecord(){ // 添加新的财务记录... } } } </script> ``` #### 接口对接与缓存机制 对于前后端分离架构的应用来说,合理的 API 路由规划至关重要。这里推荐使用 RESTful 风格的服务端点配合 axios 发起 HTTP 请求完成增删改查等基本 CRUD 功能。与此同时引入 Redis 做为临时存储介质加速频繁访问的数据读取效率降低 MySQL 查询压力。 #### 微信开放能力接入 如果计划让这款理财工具具备社交分享特性,则需按照官方文档指引注册成为微信公众平台开发者账号获得 appid 权限认证之后才能正常使用诸如支付等功能服务。此外还可以考虑加入直播营销插件吸引更多潜在客户群体关注产品动态[^4]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值