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 42203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T15:18:05+00:00 2026-05-10T15:18:05+00:00

I create a web application (WAR) and deploy it on Tomcat. In the webapp

  • 0

I create a web application (WAR) and deploy it on Tomcat. In the webapp there is a page with a form where an administrator can enter some configuration data. I don’t want to store this data in an DBMS, but just in an XML file on the file system. Where to put it?

I would like to put the file somewhere in the directory tree where the application itself is deployed. Should my configuration file be in the WEB-INF directory? Or put it somewhere else?

And what is the Java code to use in a servlet to find the absolute path of the directory? Or can it be accessed with a relative path?

  • 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. 2026-05-10T15:18:05+00:00Added an answer on May 10, 2026 at 3:18 pm

    What we do is to put it in a separate directory on the server (you could use something like /config, /opt/config, /root/config, /home/username/config, or anything you want). When our servlets start up, they read the XML file, get a few things out of it (most importantly DB connection information), and that’s it.

    I asked about why we did this once.

    It would be nice to store everything in the DB, but obviously you can’t store DB connection information in the DB.

    You could hardcode things in the code, but that’s ugly for many reasons. If the info ever has to change you have to rebuild the code and redeploy. If someone gets a copy of your code or your WAR file they would then get that information.

    Putting things in the WAR file seems nice, but if you want to change things much it could be a bad idea. The problem is that if you have to change the information, then next time you redeploy it will overwrite the file so anything you didn’t remember to change in the version getting built into the WAR gets forgotten.

    The file in a special place on the file system thing works quite well for us. It doesn’t have any big downsides. You know where it is, it’s stored seperatly, makes deploying to multiple machines easy if they all need different config values (since it’s not part of the WAR).

    The only other solution I can think of that would work well would be keeping everything in the DB except the DB login info. That would come from Java system properties that are retrieved through the JVM. This the Preferences API thing mentioned by Hans Doggen above. I don’t think it was around when our application was first developed, if it was it wasn’t used.

    As for the path for accessing the configuration file, it’s just a file on the filesystem. You don’t need to worry about the web path. So when your servlet starts up it just opens the file at ‘/config/myapp/config.xml’ (or whatever) and it will find the right thing. Just hardcodeing the path in for this one seems pretty harmless to me.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Normally I create web application projects and use code-behind, but I have a requirement
I need to create a web application installer. Install Shield seems like overkill, is
I'm about to create a web application that requires a lot of different web
I've to create a Web Based Application, that amongst other things, includes the following
I create new ASP.NET web application that use SMTP to send message. The problem
For a web application, I would like to create a simple but effective licensing
Is it possible to create nested master pages in an ASP.NET Web Application projects
I'm working on a web application. A user will create an email message that
I'm currently attempting to create a tabbed interface in a web application, and based
while trying to deploy a Grails application into tomcat6 I ran into some problems:

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.