Reputation: 13457
I'd like to have environment-specific application settings in my Java/Tomcat web app. When I developed in .NET on IIS I had the good old web.config file to help me out with this. Does Tomcat have something equivalent to IIS's web.config file?
Upvotes: 4
Views: 5148
Reputation: 4153
web.config is basically the application's config file. So in Tomcat/Java EE it's the web.xml which is part of the webapp.
Upvotes: 3