安装步骤
首先解压tomcat到/opt目录然后直接运行 bin文件夹里面的start.up:
看到下面的页面就表明运行成功了。
eclipse中servlet和jsp的开发环境就算配置好了。
简单的例子
1)首先创建一个server
File->New->Server:
一路下一步就可以了。
2)创建一个Dynamic web project
File->New->Dynamic web project
随便取个名字,finish就可以了。
注:项目的WEB-INF目录下没有web.xml文件。
3)在webcontent目录下创建index.jsp
File->New->JSP File
代码:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <% java.util.Date d =new java.util.Date();%> <h1>Today's date is<%= d.toString()%></h1> </body> </html>
右击项目,Run...>Run on Server,选择刚新建的Server。运行效果如下图所示:
4)创建Servlet
选中刚才的项目,File->New->Servlet,填好类名就可以了。
点finish,servlet类就在项目中Java Resources->src目录中创建好了,在的doGet方法中添加代码:
response.getWriter().write("Hello, world!");
参考文章:
https://help.ubuntu.com/11.04/serverguide/tomcat.htmlhttp://www.cnblogs.com/younggun/archive/2011/05/18/2050490.html