摘要: public int compareTo(String anotherString) { int len1 = value.length; int len2 = anotherString.value.length; int lim = Math.min(len1, len2); char v1[] 阅读全文
posted @ 2023-02-07 23:00 OraCat 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 1. 多环境配置文件 针对开发、测试、生产三个环境使用不同的开发配置 application.yml server: port: 6666 spring: profiles: ## 获取pom文件中被激活的profile属性 active: "@profiles.active@" group: ## 阅读全文
posted @ 2023-02-07 00:15 OraCat 阅读(599) 评论(0) 推荐(0) 编辑