7

我的目录中有一个 Mavensettings.xml文件~/.m2;它看起来像这样:

<settings>
    <profiles>
        <profile>
            <id>mike</id>
            <properties>
                <db.driver>org.postgresql.Driver</db.driver>
                <db.type>postgresql</db.type>
                <db.host>localhost</db.host>
                <db.port>5432</db.port>
                <db.url>jdbc:${db.type}://${db.host}:${db.port}/dbname</db.url>
            </properties>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>mike</activeProfile>
    </activeProfiles>
    <servers>
        <server>
            <id>server_id</id>
            <username>mike</username>
            <password>{some_encrypted_password}</password>
        </server>
    </servers>
</settings>

我想使用这些属性两次

  • 一旦进入 Mavenintegration-test阶段,就可以设置和拆除我的数据库。使用 Maven 过滤,这是完美的工作。
  • 第二次运行我的 Spring 应用程序时,这意味着我需要servlet-context.xml在 Mavenresources:resources阶段将这些属性替换到我的文件中。对于 上部的属性settings.xml,例如${db.url},这工作正常。 我不知道如何将我的数据库用户名和(解密的)密码替换为 Springservlet-context.xml文件。

servlet-context.xml我的文件的相关部分如下所示:

<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName"><value>${db.driver}</value></property>
    <property name="url"><value>${db.url}</value></property>
    <property name="username"><value>${username}</value></property>
    <property name="password"><value>${password}</value></property>
</bean>

这里的最终目标是让每个开发人员拥有自己的 Maven 设置(以及在他们自己的机器上用于集成测试的数据库)......以及 Jenkins 服务器上的类似设置。我们不想共享一个共同的用户名/密码/等。

4

3 回答 3

2

有一种方法可以通过配置 Maven War Plugin 来过滤 Web 资源。查看官方插件文档的片段。

顺便说一句,我强烈建议重新考虑这种基于过滤的方式,以便在构建时提供事实上的运行时配置。请注意,您必须重新构建相同的代码才能为另一个环境准备包(或者编辑包内容)。您可以为此使用应用程序服务器的特定内容(至少 JBoss 有一个)或使用 AFAIR 也可以像这样配置的 Spring。

于 2012-05-24T06:22:25.377 回答
1

我建议您在中间使用属性文件。我的意思是:Spring 应用程序将使用来自属性文件的属性值加载context:property-placeholder,而 Maven 将使用来自 settings.xml 的值使用过滤替换 ${...} 变量。

您的财产文件:

db.driver=${db.driver}
db.url=${db.url}
username=${username}
password=${password}

你的servlet-context.xml档案

<context:property-placeholder location="classpath:your-property-file.properties" />

<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName"><value>${db.driver}</value></property>
    <property name="url"><value>${db.url}</value></property>
    <property name="username"><value>${username}</value></property>
    <property name="password"><value>${password}</value></property>
</bean>

在你的 pom.xml

<resources>
    ...
    <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
    </resource>
    ...
</resources>
于 2012-05-24T10:11:40.560 回答
0

我还没有尝试过,但是根据这个maven wiki page,您应该能够在settings.xml使用settings.前缀时引用属性。所以${settings.servers.server.username}理想情况下应该返回usernamein settings.xml

于 2012-05-24T11:22:24.000 回答