java web设计模式有哪些?
你要使用的核心(架构)设计模式是Model-View-Controller模式。该控制器是由一个Servlet其中(在)直接创造来表示/使用特定的模型和视图基于该请求。该模型将由Javabean类表示。在包含动作(行为)的业务模型和包含数据(信息)的数据模型中,这通常可以进一步划分。该视图是由具有对(直接访问JSP文件来表示数据)模型由EL(表达式语言)。
然后,根据操作和事件的处理方式而有所不同。最受欢迎的是:
HttpServletRequest
HttpServletResponse
附带说明一下,使用本地的MVC框架是一种非常不错的学习方法,只要你出于个人/私人目的保留它,我还是建议你这样做。但是一旦你成为专业人士,则强烈建议你选择一个现有的框架,而不要重塑自己的框架。学习现有的和完善的框架要比自己开发和维护一个健壮的框架花费更少的时间。
在下面的详细说明中,我将自己限制为基于请求的MVC,因为它更易于实现。
首先,Controller部分应实现Front Controller模式(这是一种专门的Mediator模式)。它应该仅包含一个servlet,该servlet提供所有请求的集中入口点。它应基于请求可用的信息来创建模型,例如pathinfo或servletpath,方法和/或特定参数。该商业模式被称为Action在下面的HttpServlet例子。
protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { Action action = ActionFactory.getAction(request); String view = action.execute(request, response); if (view.equals(request.getPathInfo().substring(1)) { request.getRequestDispatcher("/WEB-INF/" + view + ".jsp").forward(request, response); } else { response.sendRedirect(view); // We'd like to fire redirect in case of a view change as result of the action (PRG pattern). } } catch (Exception e) { throw new ServletException("Executing action failed.", e); } }
执行该操作应返回一些标识符以定位视图。最简单的方法是将其用作JSP的文件名。将此servlet映射到特定url-pattern的web.xml,例如/pages/*,*.do甚至*.html。
url-pattern
web.xml
/pages/*
*.do
*.html
在前缀模式,例如情况下,/pages/*你可以然后调用URL就像http://example.com/pages/register,http://example.com/pages/login等,提供/WEB-INF/register.jsp,/WEB-INF/login.jsp使用适当的GET和POST行为。然后,如上例所示,可以使用部件register,login等等request.getPathInfo()。
http://example.com/pages/register
http://example.com/pages/login
/WEB-INF/register.jsp
/WEB-INF/login.jsp
request.getPathInfo()
当你使用后缀模式,比如*.do,*.html等等,那么你可以然后调用URL的喜欢http://example.com/register.do,http://example.com/login.do,等你应该改变此答案中的代码示例(也包括ActionFactory)来提取register和login部分request.getServletPath()。
http://example.com/register.do
http://example.com/login.do
本Action应遵循的策略模式。需要将其定义为抽象/接口类型,该类型应基于抽象方法的传入参数来完成工作(这与Command模式不同,其中命令 /抽象类型应基于在创建实现过程中传入的参数)。
public interface Action { public String execute(HttpServletRequest request, HttpServletResponse response) throws Exception; }
你可能希望Exception使用像这样的自定义异常来更具体ActionException。这只是一个基本的启动示例,其余的全由你决定。
这是一个LoginAction(如其名称所示)登录用户的示例。该User本身又一个数据模型。该视图是知道的存在User。
public class LoginAction implements Action { public String execute(HttpServletRequest request, HttpServletResponse response) throws Exception { String username = request.getParameter("username"); String password = request.getParameter("password"); User user = userDAO.find(username, password); if (user != null) { request.getSession().setAttribute("user", user); // Login user. return "home"; // Redirect to home page. } else { request.setAttribute("error", "Unknown username/password. Please retry."); // Store error message in request scope. return "login"; // Go back to redisplay login form with error. } } }
本ActionFactory应遵循工厂方法模式。基本上,它应该提供一种创建方法,该方法返回抽象/接口类型的具体实现。在这种情况下,它应该Action根据请求提供的信息返回接口的实现。例如,所述方法和PATHINFO(该PATHINFO是在请求URL中的上下文和servlet路径之后的部分,不包括查询字符串)。
public static Action getAction(HttpServletRequest request) { return actions.get(request.getMethod() + request.getPathInfo()); }
该actions反过来应该是一些静态/应用程序范围Map它包含所有已知的行动。如何填写这张地图由你决定。硬编码:
actions.put("POST/register", new RegisterAction()); actions.put("POST/login", new LoginAction()); actions.put("GET/logout", new LogoutAction()); // ...
或可基于类路径中的属性/ XML配置文件进行配置:(伪)
for (Entry entry : configuration) { actions.put(entry.getKey(), Class.forName(entry.getValue()).newInstance()); }
或基于在类路径中的扫描动态地实现实现特定接口和/或注释的类:(伪)
for (ClassFile classFile : classpath) { if (classFile.isInstanceOf(Action.class)) { actions.put(classFile.getAnnotation("mapping"), classFile.newInstance()); } }
在Action没有映射的情况下,请记住创建“不执行任何操作” 。让它例如直接返回request.getPathInfo().substring(1)