在AutoSys作业中设置系统环境变量SPRING_PROFILES_ACTIVE,以传递spring.profiles.active属性。
示例代码:
export SPRING_PROFILES_ACTIVE=dev && java -jar your-application.jar
SpringApplication app = new SpringApplication(YourApplication.class); app.setDefaultProperties(Collections.singletonMap("spring.profiles.active", "dev")); app.run(args);