Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 Spring Boot 进行应用程序开发。我需要提取以逗号分隔的环境变量。例如,我有像 prod、useast 这样的环境变量。如何拆分值并在 application.properties 中分别提取每个值。
使用类型安全的配置属性,您将属性定义为List<String>. Spring Boot 会拆分逗号分隔的值。
List<String>