Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6719821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:08:17+00:00 2026-05-26T09:08:17+00:00

I need to include some stuff in my final war: I have a situation

  • 0

I need to include some stuff in my final war:

I have a situation with multi profiles files in the src/main/resources:

 configuration.properties (local)
 configuration.dev.properties
 configuration.production.properties

so, I would like that when for example ‘-Pproduction’ is executed the file configuration.production.properties is copied in the war at the dir WEB-INF/classes and renamed as ‘configuration.properties’. How can I get that?

Thanks

Randomize

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:08:18+00:00Added an answer on May 26, 2026 at 9:08 am

    I would not do it like this.

    Instead, I would have a single configuration.properties, holding placeholders for the values that differ depending on the profile :

    numberOfThreads=${config.numberOfThreads} # depends on the profile
    foo=bar #doesnt depend on the profile
    

    And then use the filtering capabilities of the resources plugin in order to replace the placeholder with actual values fetched from the profile:

    filter-dev.properties :
        config.numberOfThreads=2
    filter-prod.properties :
        config.numberOfThreads=16
    

    And now in your pom :

    <profile>
      <id>dev</id>
      <properties>
        <env>dev</env>
      </properties>
    </profile>
    <profile>
      <id>prod</id>
      <properties>
        <env>prod</env>
      </properties>
    </profile>
    
    <filters>
      <filter>src/main/filters/filter-${env}.properties</filter>
    </filters>
    
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
      </resource>
    </resources>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to include some kind of notifications in a sidebar gadget, preferably systray
I need some help trying to match a C include file with full path
I need to make some reflective method calls in Java. Those calls will include
I have a .txt file that I need to include into a page, that
I have a prototype model where I need to include the following extension methods
Programaticly, I need to include a google Maps map to automaticly generated pdf files.
Say I have a bunch of data on some people. This could include Name,
Often i have a problem that I need to determine which assebmly to include
I need to include a copyright statement at the top of every Python source
I've got to modify a C program and I need to include a set

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.