Tomcat
文章平均质量分 76
不学-何为
学习时的痛苦是暂时的,未学到的痛苦是终生的。
展开
-
web.xml
http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"原创 2010-03-22 16:18:00 · 616 阅读 · 0 评论 -
tomcat-users.xml
原创 2010-03-22 16:29:00 · 426 阅读 · 0 评论 -
context.xml
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ow原创 2010-03-22 16:15:00 · 433 阅读 · 0 评论 -
server.xml
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ow原创 2010-03-22 16:16:00 · 366 阅读 · 0 评论 -
添加虚拟目录
为什么要配置虚拟目录? 所有的开发程序保存在虚拟目录之中(jsp文件,servlet文件)如何配置虚拟目录,有何要求?打开配置文件:conf/server.xml WebRoot |-WEB-INF文件夹 |-web.xml文件 在元素之前加入: 如:原创 2010-04-10 13:35:00 · 565 阅读 · 0 评论 -
数据源配置及使用
在Tomcat中配置数据源,除了数据库的连接方式不一样之外,其他的所有操作都一样,只是关闭的时候不是彻底地关闭数据库,而是把数据库的连接放回到连接池中去。 如果要想使用此配置,则必须配置虚拟目录,因为此配置是在虚拟目录之上起作用的。 当然,需要注意的是,如果要想完成以上的功能,在服务器上一定要保存好各个数据库的驱动程序(jar包)。 auth="Container" type="javax原创 2010-04-10 21:28:00 · 437 阅读 · 0 评论 -
配置Tomcat6版本上的JNDI的步骤
1.在apache-tomcat-6.x.x/conf/context.xml配置文件的标签中添加: type="javax.sql.DataSource" username="root" password="111111" driverClassName="com.mysql.jdbc.Driver" url="jdb原创 2010-04-11 18:49:00 · 548 阅读 · 0 评论