码迷,mamicode.com
首页 > 其他好文 > 详细

servlet

时间:2016-08-13 08:48:14      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:

*****************
time:2016.7.11
theme:servlet.
***************

// 导入必需的 java 库
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

// 扩展 HttpServlet 类
public class HelloWorld extends HttpServlet {

private String message;

public void init() throws ServletException
{
// 执行必需的初始化
message = "Hello World";
}

public void doGet(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
// 设置响应内容类型
response.setContentType("text/html");

// 实际的逻辑是在这里
PrintWriter out = response.getWriter();
out.println("<h1>" + message + "</h1>");
}

public void destroy()
{
// 什么也不做
}
}
___________________________________________________________________________________________________
servlet将业务逻辑分装。我们先前是将前台数据发送个后台(先前我们家业务逻逻辑通过接口,与com.etc.dao 实现接口)。通过request,getparamet. 得到数据
login.jsp:页面提交数据给后台。(shwoallstudent 与之相反)。


后台往前台推送数据:一个servlet可以处理两个功能。添加一个标识。
<input tyep="hidedn" name="action" value="login">

String action =req.getparamenter("action");

 

servlet

标签:

原文地址:http://www.cnblogs.com/a-n-dy/p/5767144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!