不是专家,但Gradle是(Spring Boot)项目正在使用的。我有@Component
运行设置虚拟数据,但我只希望它在本地运行。所以现在我也放了一个@Profile("local123")
,这会关闭组件。大。
接下来我想在Eclipse的Run Configurations... > JVM Arguments
-Dspring.profiles.active=local123
中加入,以便在我在本地运行构建时打开组件,但仅。没有快乐。我看过一些帖子说you need to add this或类似于build.gradle
bootRun {
systemProperties System.properties
}
但是在我尝试将其添加到文件中的任何地方,都会导致我的构建崩溃。