Tomcat自动部署
在Tomcat的server.xml配置文件中部署
1、在Tomcat下,找到conf文件下的server.xml,打开。
2、在<Host>和</host>之间加上如下代码:
<Context path="/虚拟目录名" docBase="目标目录位置" debug="0" reloadable="true" > </Context>
(严格区分大小写,当path=""时,此时的虚拟目录直接为root--->http://localhost:8080/)
参数:
path:表示在浏览器中输入http://localhost:8080/虚拟目录名
docBase:表示你的程序包的物理绝对路径,默认的绝对路径是 %tomcat_home%/webapps
reloadable :为true,则tomcat会自动检测应用程序的/WEB-INF/lib 和/WEB-INF/classes目录的变化,自动装载新的应用程序,我们可以在不重起tomcat的情况下改变应用程序;为false则不自动加载。
以上资料转自 : http://wenbinzhou.iteye.com/blog/492108
如果存在jndi连接池, 请在 context.xml 中配置一下代码段
1 <Resource name="jndi/这里是jndi的名称" auth="Container" type="javax.sql.DataSource" 2 driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/数据库名称" 3 username="数据库用户名" password="数据库密码" maxActive="20" maxIdle="10" maxWait="10000" />