【问题标题】:Maven resource filtering not working - because of spring boot dependency [duplicate]Maven资源过滤不起作用-由于弹簧启动依赖[重复]
【发布时间】:2016-07-29 19:13:15
【问题描述】:

在一个 Maven 项目中,我尝试使用 Maven 资源过滤替换一些令牌,但它不起作用。我有一些其他项目可以工作,但在这个单个项目中不起作用,不知道出了什么问题。

属性文件位于 /src/main/resources/my.properties

我尝试了以下不同的 maven 命令,但不起作用。

mvn clean install
mvn clean install resources:resources

my.properties

### Spring boot properties
jdbc.url=${jdbc.url}
ldap.domain=${ldap_domain}
ldap.url=${ldap_url}

pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.jai</groupId>
    <artifactId>client</artifactId>
    <version>0.0.6-SNAPSHOT</version>
    <name>client</name>
    <description>client web application</description>
    <packaging>war</packaging>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.2.RELEASE</version>
        <relativePath />
    </parent>


    <dependencies>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-ldap</artifactId>
        </dependency>

    </dependencies>

    <build>
        <finalName>client</finalName>

        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>

        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>

            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <warSourceDirectory>WebContent</warSourceDirectory>
                    <failOnMissingWebXml>false</failOnMissingWebXml>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>exec-bower-install</id>
                        <phase>generate-sources</phase>
                        <configuration>
                            <executable>bower</executable>
                            <arguments>
                                <argument>install</argument>
                            </arguments>
                        </configuration>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>

    </build>


    <profiles>
        <!-- localhost environment -->
        <profile>
            <id>local</id>

            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>

            <properties>

                <ldap_domain>mydomain.local</ldap_domain>
                <ldap_url>ldap://server:389</ldap_url>
                <jdbc.url>testttttttttttttttttttttt</jdbc.url>

            </properties>
        </profile>

        </profiles>

</project>

更新:-

我发现这个问题是由于 spring boot 依赖引起的。 如果我评论 &lt;parent&gt; 部分和其他 Spring Boot 依赖项,那么它可以正常工作并且能够替换令牌。但仍然不知道如何通过保持弹簧启动来解决这个问题。

【问题讨论】:

标签: java maven spring-boot


【解决方案1】:

终于从我的 cmets 中的链接中找到了答案。因为这是一个 Spring Boot 应用程序......特殊情况......符号应该是

@xxxxx@  instead of ${xxxxx}

所以我的属性文件如下

### Spring boot properties
jdbc.url=@jdbc.url@
ldap.domain=@ldap_domain@
ldap.url=@ldap_url@

【讨论】:

  • 只是为了防止人们打猎,这在 SB 1.3.0 中进行了更改。这里是github.com/spring-projects/spring-boot/wiki/…
  • 非常感谢。帮帮我!
  • 我正在使用@,但仍然无法正常工作。我试图在构建过程中注入一个属性。 mvn clean install -DsecretProperty=hello 并在我的属性文件 value.from.file=@secretProperties@ 中有一个属性当我运行我的 Spring Boot 应用程序时得到的是 -> @secretProperties@
  • 我不敢相信这在 Spring Boot 2.5.4 中仍然是一个问题。但确实如此。
猜你喜欢
  • 2016-11-07
  • 1970-01-01
  • 1970-01-01
  • 2017-01-30
  • 2017-05-25
  • 1970-01-01
  • 1970-01-01
  • 2016-10-21
  • 1970-01-01
相关资源
最近更新 更多