在用户模块开发中,我们发现用传统的开发方式开发,这样会导致一个请求对应一个servlet:这样会导致这个开发模块中的servlet过多,那能不能做一个处理?从而让一个模块使用一个servlet呢?下面我们通过两个案例来分析一下。
用户模块功能:
注册:http://localhost:8080/store/UserServlet?method=regist
登陆:http://localhost:8080/store/UserServlet?method=login
激活:http://localhost:8080/store/UserServlet?method=active
查询商品模块功能:(只列举几个方法来作为例子)
查询所有的商品:http://localhost:8080/store/ProductServlet?method=findAll