我正在使用tomcat,jsp,servlets和log4j处理我的第一个web项目,我有一个使用Command设计模式的演示,我很感兴趣。我有一个Controller接受doGet和doPost方法然后向CommandContainer发出请求,找到适当的Command,执行它,获取资源的路径并将客户端转发给它。
public abstract class Command implements Serializable {
private static final long serialVersionUID = 8879403039606311780L;
public abstract String execute(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException;
}
管理命令的CommandContainer:
public class CommandContainer {
private static final Logger LOG = Logger.getLogger(CommandContainer.class);
private static Map<String, Command> commands = new TreeMap<String, Command>();
static {
// common commands
commands.put("login", new LoginCommand());
commands.put("logout", new LogoutCommand());
commands.put("viewSettings", new ViewSettingsCommand());
commands.put("noCommand", new NoCommand());
// client commands
commands.put("listMenu", new ListMenuCommand());
// admin commands
commands.put("listOrders", new ListOrdersCommand());
LOG.debug("Command container was successfully initialized");
LOG.trace("Number of commands --> " + commands.size());
}
public static Command get(String commandName) {
if (commandName == null || !commands.containsKey(commandName)) {
LOG.trace("Command not found, name --> " + commandName);
return commands.get("noCommand");
}
return commands.get(commandName);
}
我唯一拥有的控制器:
public class Controller extends HttpServlet {
private static final long serialVersionUID = 2423353715955164816L;
private static final Logger LOG = Logger.getLogger(Controller.class);
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
process(request, response);
}
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
process(request, response);
}
private void process(HttpServletRequest request,
HttpServletResponse response) throws IOException, ServletException {
LOG.debug("Controller starts");
// extract command name from the request
String commandName = request.getParameter("command");
LOG.trace("Request parameter: command --> " + commandName);
// obtain command object by its name
Command command = CommandContainer.get(commandName);
LOG.trace("Obtained command --> " + command);
// execute command and get forward address
String forward = command.execute(request, response);
LOG.trace("Forward address --> " + forward);
LOG.debug("Controller finished, now go to forward address --> " + forward);
// if the forward address is not null go to the address
if (forward != null) {
RequestDispatcher disp = request.getRequestDispatcher(forward);
disp.forward(request, response);
}
}
}
我正在以下一种方式在jsp中使用Controller:
...
<form id="login_form" action="controller" method="post">
<input type="hidden" name="command" value="login"/>
...
</form>
和web.xml文件:
<servlet>
<servlet-name>Controller</servlet-name>
<servlet-class>com.mycompany.web.Controller</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Controller</servlet-name>
<url-pattern>/controller</url-pattern>
</servlet-mapping>
我不明白如何使用Command模式实现Post-Redirect-Get模式,因为每次请求来到控制器时它都使用process()
方法,并且似乎无关紧要GET或POST用于JSP。然后你会帮助理解使用Command模式的必要性吗?如果我将使用多个servlet,如LoginServlet,LogoutServlet,ViewSettingsServlet而不是一个Controller,那会是一个坏主意,因为那时我需要在jsp表单中将它们硬编码为动作?所有这些问题只会令我感到困惑,因为我是首发,所以请抓紧了解这一切。
答案 0 :(得分:1)
嗯,目前,您的命令返回一个String:要转发到的JSP的名称。如果我理解正确,您还希望能够重定向而不是转发。所以你需要告诉servlet返回的值,如果不是要转发的视图名,而是要重定向到的URL。
有各种方法可以做到这一点。例如,您可以返回包含要执行的操作类型(FORWARD或REDIRECT)的对象,以及视图名称或URL。或者您可以返回一个像重定向的字符串:/ foo / bar,这意味着/ foo / bar是一个重定向到的URL,而不是视图名称。
但最好的解决方案可能是避免重新发明轮子,并使用现有的MVC框架而不是自己实现一个:Spring MVC,Stripes,Struts等都提供了比你那里更多的东西,并且在很多更好的方法。特别是,使用请求参数来选择命令不是一个很好的选择。使用路径是一个更好的主意。
您也可以简单地使用多个servlet,这比当前的解决方案更好。但是你会失去前端控制器,它通常包含所有命令共有的代码:国际化,安全检查等。