What is the “source” attribute of the Context element of an Apache Tomcat configuration file for?

后端 未结 1 1847
半阙折子戏
半阙折子戏 2021-01-03 00:06

It\'s somehow related to Eclipse. For example:


    

        
相关标签:
1条回答
  • 2021-01-03 00:47

    Eclipse WTP adds the source attribute to the project-related <Context> element to identify the location of the source code associated with the context (thus, the actual project in the workspace which has been deployed to this server from inside Eclipse).

    If you wondered about this due to a warning during Tomcat's startup, since Tomcat 6.0.16 any "unrecognized" XML tags and attributes in the context.xml or server.xml will produce a warning about it during the startup, although there's actually no means of a DTD.

    Just ignore it. Tomcat shall work fine and Eclipse is happy with it. It won't occur in real production environment with a worthfully WAR file.

    0 讨论(0)
提交回复
热议问题