如何从配置文件夹而不是资源文件夹传递application.properties文件

时间:2019-08-08 01:10:23

标签: spring-boot

我正在尝试从我的项目的./config文件夹中读取application.properties文件。但是它在本地环境中没有在intellij想法中找到。这是现有项目,并且可以在服务器中正常工作。但是,如果我将application.properties放在资源文件夹中,则可以正常工作。我需要从./config文件工作。如何设置本地环境?

我的./config文件夹的pom.xml配置如下所示

  <build>
    <plugins>
        <plugin>
           <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.6</version>
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>jp.co.thes.ceny.CenyApplication</mainClass>
                        <addClasspath>true</addClasspath>
                    </manifest>
                    <manifestEntries>
                        <Class-Path>./config/</Class-Path>
                    </manifestEntries>
                </archive>
            </configuration>
        </plugin>
    </plugins>
</build>

我的配置文件夹位置如下:

enter image description here

我的Intellij Idea配置如下: enter image description here

0 个答案:

没有答案