摘要:
在今天的多层结构的web应用程序的设计中,我们可以同时使用Java applet和Servlet。Applet为建立功能强大的动态界面提供了便利的机制,Servlet为web服务器或者其他应用服务器处理请求提供了高效率的手段。Sun公司的应用程序模型描述了在Java 2平台下开发企业级的Java应用的最好的规范。一种被推荐的规范是:在前端使用Applet、HTML和JSP,在后端使用Enterprise JavaBeans支持的Servlet及其他成分。 这种体系结构的关键是在客户端的Applet和在服务器说?ervlet之间的通信。但是由于Applet受浏览器安全模式的限制,在一个Apple 阅读全文
摘要:
servlet 1 import java.io. * ; 2 import java.util.Date; 3 import javax.servlet. * ; 4 import javax.servlet.http. * ; 5 publicvoid Riceive extends HttpServlet 6 { 7 publicvoid service(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException 8 { 9 res... 阅读全文