您的位置:首页 > 运维架构 > Tomcat

Creating a custom server.xml file with Tomcat

2006-11-25 17:10 302 查看
Typically, when you run your web application using Tomcat in the JBuilder IDE, JBuilder creates a serverXXXX.xml file (where XXXX is the port number Tomcat is listening to)and deletes it when you shut down Tomcat. You can edit the file and force JBuilder to keep it.
To create a custom server.xml file:
1.Run your web application in JBuilder as you normally would.
2.Go to your project’s Tomcat/conf directory while Tomcat is running. This folder is created by JBuilder when your web application is running.
3.Make a copy of the conf directory in a temp directory.
4.Open serverXXXX.xml in the conf directory in a text editor.
5.Remove the second line of the file:<!--This comment marks this file as generated, so it may be deleted and regenerated at any time. To preserve manual changes to this file, delete this comment.--> With this line removed, JBuilder will not automatically delete the file when you stop the server.
6.Make other changes to the server configuration file as needed. (Save the file and leave it open in the editor.)
7.Go back to JBuilder and shut down Tomcat.
8.Save the edited file to the copy of the conf directory.
9.Copy the conf directory back to your project’s Tomcat directory.
10.Restart the web server and your web application.
Now, when you re-start the web application and the web server, your edited serverXXXX.xml file will be used instead of an auto-generated one. 
 
--摘自JBuilder2005 Developing Applications for J2EE™ Servers文档
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息