社区
Web 开发
帖子详情
Simple example of Servlet
MyPlanet
2002-11-14 09:33:50
I am learning JAVA. Can you tell me where I can find a simple example how to create Servlet and use it in JSP?
...全文
57
4
打赏
收藏
Simple example of Servlet
I am learning JAVA. Can you tell me where I can find a simple example how to create Servlet and use it in JSP?
复制链接
扫一扫
分享
转发到动态
举报
写回复
配置赞助广告
用AI写文章
4 条
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
xuw
2002-11-15
打赏
举报
回复
不知你用什么服务,但用tomcat是最简单的了.
那里有很多例子可用:
http://localhost:8080/examples/servlets/index.html
HawaiiLeo
2002-11-15
打赏
举报
回复
Tomcat 中例子
C:\Tomcat4.1\webapps\examples\servlets
如helloworld.html
=====================================
Source Code for HelloWorld Example
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class HelloWorld extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<body>");
out.println("<head>");
out.println("<title>Hello World!</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Hello World!</h1>");
out.println("</body>");
out.println("</html>");
}
}
alsoran
2002-11-14
打赏
举报
回复
www.servletforum.com
longlink
2002-11-14
打赏
举报
回复
use Tomcat and it will give you some example.
简单
servlet
程序
老师给的一个很简单的
servlet
的例子
servlet
简单示例
最基础
servlet
例子,包含一个
servlet
类,一个web.xml文件的配置
创建简单
servlet
NULL 博文链接:https://liuna718-163-com.iteye.com/blog/763193
servlet
技术
结合慕课网上的视频,对
servlet
技术总结
Servlet
s和JSP核心技术 卷2(英文版) 第一部分
Servlet
s和JSP核心技术 卷2 内容还是很详细的,看过卷1的人可以继续用这本书深造,呵呵 目录: Chapter 1. Using and Deploying Web Applications Section 1.1. Purpose of Web Applications Section 1.2. Structure of Web Applications Section 1.3. Registering Web Applications with the Server Section 1.4. Development and Deployment Strategies Section 1.5. The Art of WAR: Bundling Web Applications into WAR Files Section 1.6. Building a
Simple
Web Application Section 1.7. Sharing Data Among Web Applications Chapter 2. Controlling Web Application Behavior with web.xml Section 2.1. Purpose of the Deployment Descriptor Section 2.2. Defining the Header and the Root Element Section 2.3. The Elements of web.xml Section 2.4. Assigning Names and Custom URLs Section 2.5. Disabling the Invoker
Servlet
Section 2.6. Initializing and Preloading
Servlet
s and JSP Pages Section 2.7. Declaring Filters Section 2.8. Specifying Welcome Pages Section 2.9. Designating Pages to Handle Errors Section 2.10. Providing Security Section 2.11. Controlling Session Timeouts Section 2.12. Documenting Web Applications Section 2.13. Associating Files with MIME Types Section 2.14. Configuring JSP Pages Section 2.15. Configuring Character Encoding Section 2.16. Designating Application Event Listeners Section 2.17. Developing for the Clustered Environment Section 2.18. J2EE Elements Chapter 3. Declarative Security Section 3.1. Form-Based Authentication Section 3.2.
Example
: Form-Based Authentication Section 3.3. BASIC Authentication Section 3.4.
Example
: BASIC Authentication Section 3.5. Configuring Tomcat to Use SSL Section 3.6. WebClient: Talking to Web Servers Interactively Section 3.7. Signing a Server Certificate Chapter 4. Programmatic Security Section 4.1. Combining Container-Managed and Programmatic Security Section 4.2.
Example
: Combining Container-Managed and Programmatic Security Section 4.3. Handling All Security Programmatically Section 4.4.
Example
: Handling All Security Programmatically Section 4.5. Using Programmatic Security with SSL Section 4.6.
Example
: Programmatic Security and SSL Chapter 5.
Servlet
and JSP Filters Section 5.1. Creating Basic Filters Section 5.2.
Example
: A Reporting Filter Section 5.3. Accessing the
Servlet
Context from Filters Section 5.4.
Example
: A Logging Filter Section 5.5. Using Filter Initialization Parameters Section 5.6.
Example
: An Access Time Filter Section 5.7. Blocking the Response Section 5.8.
Example
: A Prohibited-Site Filter Section 5.9. Modifying the Response Section 5.10.
Example
: A Replacement Filter Section 5.11.
Example
: A Compression Filter Section 5.12. Configuring Filters to Work with RequestDispatcher Section 5.13.
Example
: Plugging a Potential Security Hole Section 5.14. The Complete Filter Deployment Descriptor Chapter 6. The Application Events Framework Section 6.1. Monitoring Creation and Destruction of the
Servlet
Context Section 6.2.
Example
: Initializing Commonly Used Data Section 6.3. Detecting Changes in
Servlet
Context Attributes Section 6.4.
Example
: Monitoring Changes to Commonly Used Data Section 6.5. Packaging Listeners with Tag Libraries Section 6.6.
Example
: Packaging the Company Name Listeners Section 6.7. Recognizing Session Creation and Destruction Section 6.8.
Example
: A Listener That Counts Sessions Section 6.9. Watching for Changes in Session Attributes Section 6.10.
Example
: Monitoring Yacht Orders Section 6.11. Identifying
Servlet
Request Initialization and Destruction Section 6.12.
Example
: Calculating Server Request Load Section 6.13. Watching
Servlet
Request for Attribute Changes Section 6.14.
Example
: Stopping Request Frequency Collection Section 6.15. Using Multiple Cooperating Listeners Section 6.16. The Complete Events Deployment Descriptor Chapter 7. Tag Libraries: The Basics Section 7.1. Tag Library Components Section 7.2.
Example
:
Simple
Prime Tag Section 7.3. Assigning Attributes to Tags Section 7.4.
Example
: Prime Tag with Variable Length Section 7.5. Including Tag Body in the Tag Output Section 7.6.
Example
: Heading Tag Section 7.7.
Example
: Debug Tag Section 7.8. Creating Tag Files Section 7.9.
Example
:
Simple
Prime Tag Using Tag Files Section 7.10.
Example
: Prime Tag with Variable Length Using Tag Files Section 7.11.
Example
: Heading Tag Using Tag Files Chapter 8. Tag Libraries: Advanced Features Section 8.1. Manipulating Tag Body Section 8.2.
Example
: HTML-Filtering Tag Section 8.3. Assigning Dynamic Values to Tag Attributes Section 8.4.
Example
:
Simple
Looping Tag Section 8.5. Assigning Complex Objects as Values to Tag Attributes Section 8.6.
Example
: Table Formatting Tag Section 8.7. Creating Looping Tags Section 8.8.
Example
: ForEach Tag Section 8.9. Creating Expression Language Functions Section 8.10.
Example
: Improved Debug Tag Section 8.11. Handling Nested Custom Tags Section 8.12.
Example
: If-Then-Else Tag Chapter 9. JSP Standard Tag Library (JSTL) Section 9.1. Installation of JSTL Section 9.2. c:out Tag Section 9.3. c:forEach and c:forTokens Tags Section 9.4. c:if Tag Section 9.5. c:choose Tag Section 9.6. c:set and c:remove Tags Section 9.7. c:import Tag Section 9.8. c:url and c:param Tags Section 9.9. c:redirect Tag Section 9.10. c:catch Tag Chapter 10. The Struts Framework: Basics Section 10.1. Understanding Struts Section 10.2. Setting Up Struts Section 10.3. The Struts Flow of Control and the Six Steps to Implementing It Section 10.4. Processing Requests with Action Objects Section 10.5. Handling Request Parameters with Form Beans Section 10.6. Prepopulating and Redisplaying Input Forms Chapter 11. The Struts Framework: Doing More Section 11.1. Using Properties Files Section 11.2. Internationalizing Applications Section 11.3. Laying Out Pages with Tiles Section 11.4. Using Tiles Definitions Chapter 12. The Struts Framework: Validating User Input Section 12.1. Validating in the Action Class Section 12.2. Validating in the Form Bean Section 12.3. Using the Automatic Validation Framework Developing Applications with Apache Ant Section A.1. Summarizing the Benefits of Ant Section A.2. Installing and Setting Up Ant Section A.3. Creating an Ant Project Section A.4. Reviewing Common Ant Tasks Section A.5.
Example
: Writing a
Simple
Ant Project Section A.6. Using Ant to Build a Web Application Section A.7.
Example
: Building a Web Application Section A.8. Using Ant to Create a WAR File Section A.9.
Example
: Creating a Web Application WAR File Index
Web 开发
81,116
社区成员
341,730
社区内容
发帖
与我相关
我的任务
Web 开发
Java Web 开发
复制链接
扫一扫
分享
社区描述
Java Web 开发
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
暂无公告
试试用AI创作助手写篇文章吧
+ 用AI写文章