myeclipse 网上购物系统


该系统是由myeclipse开发的网上购物系统,该系统功能强大,适合初学和中级学java的用户,敬请放心使用。
资源截图
代码片段和文件信息
import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;


public class TestContextParamServlet extends HttpServlet {

/**
 * Constructor of the object.
 */
public TestContextParamServlet() {
super();
}

/**
 * Destruction of the servlet. 

 */
public void destroy() {
super.destroy(); // Just puts “destroy“ string in log
// Put your code here
}

/**
 * The doGet method of the servlet. 

 *
 * This method is called when a form has its tag value method equals to get.
 * 
 * @param request the request send by the client to the server
 * @param response the response send by the server to the client
 * @throws ServletException if an error occurred
 * @throws IOException if an error occurred
 */
public void doGet(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {

response.setContentType(“text/html“);
PrintWriter out = response.getWriter();
out
.println(““);
out.println(““);
out.println(“  tle>A Servlettle>“);
out.println(“  “);
out.print(“    This is “);
out.print(this.getClass() + this.getServletConfig().getServletContext().getInitParameter(“a“));
out.println(“ using the GET method“);
out.println(“  “);
out.println(““);
out.flush();
out.close();
}

/**
 * The doPost method of the servlet. 

 *
 * This method is called when a form has its tag value method equals to post.
 * 
 * @param request the request send by the client to the server
 * @param response the response send by the server to the client
 * @throws ServletException if an error occurred
 * @throws IOException if an error occurred
 */
public void doPost(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {

response.setContentType(“text/html“);
PrintWriter out = response.getWriter();
out
.println(““);
out.println(““);
out.println(“  tle>A Servlettle>“);
out.println(“  “);
out.print(“    This is “);
out.print(this.getClass());
out.println(“ using the POST method“);
out.println(“  “);
out.println(““);
out.flush();
out.close();
}

/**
 * Initialization of the servlet. 

 *
 * @throws ServletException if an error occure
 */
public void init() throws ServletException {
// Put your code here
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        825  2013-12-01 00:50  OnlineShop.classpath

     文件        301  2013-11-23 17:15  OnlineShop.mymetadata

     文件       1228  2011-08-03 20:30  OnlineShop.project

     文件       1748  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingcategoryCategory.java

     文件       6286  2007-09-18 15:06  OnlineShopsrccomjsxtshoppingcategoryCategoryService.java

     文件        112  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingcategoryGradeOutOfBoundsException.java

     文件       1118  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingclientCart.java

     文件        410  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingclientCartItem.java

     文件        627  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingorderOrderDAO.java

     文件        993  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingorderOrderMgr.java

     文件       7338  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingorderOrderMySQLDAO.java

     文件        823  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingorderSalesItem.java

     文件       1079  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingorderSalesOrder.java

     文件       1441  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingproductProduct.java

     文件       1061  2007-09-18 16:20  OnlineShopsrccomjsxtshoppingproductProductDAO.java

     文件       3093  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingproductProductMgr.java

     文件       7888  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingproductProductMySQLDAO.java

     文件        939  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingproductProductOracleDAO.java

     文件       1844  2007-09-19 11:02  OnlineShopsrccomjsxtshoppingproductProductSearchFormBean.java

     文件        631  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingstatProductStatItem.java

     文件       2198  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingstatSalesCountServlet.java

     文件       1176  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingstatStatService.java

     文件        357  2007-09-18 10:26  OnlineShopsrccomjsxtshopping agHelloWorldTag.java

     文件       2440  2007-09-18 10:26  OnlineShopsrccomjsxtshopping estBarChartDemo.java

     文件        191  2007-09-18 10:26  OnlineShopsrccomjsxtshoppinguserPasswordNotCorrectException.java

     文件       2334  2013-12-06 14:22  OnlineShopsrccomjsxtshoppinguser est1.java

     文件       6760  2013-12-06 12:33  OnlineShopsrccomjsxtshoppinguserUser.java

     文件        179  2007-09-18 10:26  OnlineShopsrccomjsxtshoppinguserUserNotFoundException.java

     文件       2469  2013-11-23 17:22  OnlineShopsrccomjsxtshoppingutilDB.java

     文件       1358  2007-09-18 10:26  OnlineShopsrccomjsxtshoppingutilfilterAuthFilter.java

............此处省略746个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)