[抄题]: Compare two version numbers version1 and version2.If version1 > version2 return 1; if version1 < version2 return -1;otherwise return 0. You may assume that the version strings are non-empty and contain only digits and the . character.The . cha
//在开发中,经常会遇到有些需求需要app强更,思路大概:所有请求都要带上版本号和渠道(android或ios),然后网关对这些版本号判断,如果发现这些版本号是很旧的,就返回错误码或者标志符告诉app,app做对应的逻辑,如提示用户点击更新之类的 首先在application.yml里配置是否需要强制更新以及当前系统的最新版本: 之后根据请求参数带过来的版本号进行判断,具体逻辑如下: //读取配置文件 @Configuration public class AppConfig { @Value(