Trevor
Trevor

Reputation: 13457

What is the Tomcat equivalent of IIS's web.config file?

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

Answers (1)

avijendr
avijendr

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

Related Questions