
7.1-Tomcat
elifefly
这个作者很懒,什么都没留下…
展开
-
收藏:JDBC常用连接写法(包括MySQL、Oracle、Sybase、SQLServer、DB2)
收藏:JDBC常用连接写法(包括MySQL、Oracle、Sybase、SQLServer、DB2) 1. MySQL(http://www.mysql.com)mm.mysql-2.0.2-bin.jarClass.forName( "org.gjt.mm.mysql.Driver" );cn = DriverManager.getConnection( "jdbc:mysql:/原创 2008-10-02 21:32:00 · 4367 阅读 · 1 评论 -
JSP、Servlet注意知识点
1. 符合j2ee标准的web-app的目录结构n WEB-INF u classes u web.xml u lib2. servlet开发过程n 从httpservlet继承, 重写doget / doPost方法n 部署web.xml 3. servlet声明原创 2009-03-06 23:35:00 · 995 阅读 · 0 评论 -
Tomcat
1 Server1.1 In the Tomcat world, a Server represents the whole container. Tomcat provides a default implementation of the Server interface., and this is rarely customized by users.转载 2009-03-06 23:33:00 · 1231 阅读 · 0 评论 -
删除工程下的所有.SVN文件
删除工程下的所有.SVN文件 命令如下: for /r ./ %a in (./) do @if exist "%a/.svn" rd /s /q "%a/.svn" 测试通过,完全可以使用。原创 2009-10-25 00:13:00 · 1021 阅读 · 0 评论