尝试在db.properties文件中添加build.gradle文件时出现此错误

build.gradle:

allprojects {

    apply from: 'db.properties'
    apply from: 'deployment.properties'

    repositories {
        mavenCentral()
    }

    apply plugin: 'java'
    apply plugin: 'war'
    apply plugin: 'maven-publish'
    apply plugin: 'idea'

    sourceCompatibility = 1.8

}

db.properties:
db=blal
dbUsername=/bilal/home

我得到的错误是:
* Where:
Script 'camelawsextractionservicesb/db.properties' line: 1

* What went wrong:
A problem occurred evaluating script.
> Could not find property 'blal' on root project 'CamelExtractionServices'.

最佳答案

如果您要从.properties文件加载属性,我会尝试这样的操作:

ext.additionalProperties = new Properties().load(file("db.properties").newReader())
ext.someOtherProperties = new Properties().load(file("foo.properties").newReader())

然后,您可以访问属性:
println additionalProperties['db']
println someOtherProperties['bar']

07-26 09:32
查看更多