SpringMvc入门2

文章链接:http://com-xpp.iteye.com/blog/1604183

SpringMVC框架介绍


 

Spring框架提供了构造Web应用程序的全能MVC模块。Spring MVC分离了控制器、模型对象、分派器以及处理程序对象的角色,这种分离让它们更容易进行制定。是一个标准的MVC框架。

 

那你猜一猜哪一部分应该是哪一部分?



SpringMVC框架图


SpringMVC接口解释


 

DispatcherServlet接口

 

Spring提供的前端控制器,所有的请求都有经过它来统一分发。在DispatcherServlet将请求分发给Spring Controller之前,需要借助于Spring提供的HandlerMapping定位到具体的Controller

 

HandlerMapping接口

 

能够完成客户请求到Controller映射。

 

Controller接口

 

需要为并发用户处理上述请求,因此实现Controller接口时,必须保证线程安全并且可重用。Controller将处理用户请求,这和Struts Action扮演的角色是一致的。一旦Controller处理完用户请求,则返回ModelAndView对象给DispatcherServlet前端控制器,ModelAndView中包含了模型(Model)和视图(View)。从宏观角度考虑,DispatcherServlet是整个Web应用的控制器;从微观考虑,Controller是单个Http请求处理过程中的控制器,而ModelAndViewHttp请求过程中返回的模型(Model)和视图(View)。

 

ViewResolver接口

 

Spring提供的视图解析器(ViewResolver)在Web应用中查找View对象,从而将相应结果渲染给客户。

 

SpringMVC运行原理


1.客户端请求提交到DispatcherServlet

2.由DispatcherServlet控制器查询一个或多个HandlerMapping,找到处理请求的Controller

3.DispatcherServlet将请求提交到Controller

4.Controller调用业务逻辑处理后,返回ModelAndView

5.DispatcherServlet查询一个或多个ViewResoler视图解析器,找到ModelAndView指定的视图

6.视图负责将结果显示到客户端

 

SpringMVC运行实例

Account类:

 

Java代码 
  1. package com.pb.entity;  
  2.   
  3. public class Account {  
  4.     private String cardNo;  
  5.     private String password;  
  6.     private float balance;  
  7.     public String getCardNo() {  
  8.         return cardNo;  
  9.     }  
  10.     public void setCardNo(String cardNo) {  
  11.         this.cardNo = cardNo;  
  12.     }  
  13.     public String getPassword() {  
  14.         return password;  
  15.     }  
  16.     public void setPassword(String password) {  
  17.         this.password = password;  
  18.     }  
  19.     public float getBalance() {  
  20.         return balance;  
  21.     }  
  22.     public void setBalance(float balance) {  
  23.         this.balance = balance;  
  24.     }  
  25.       
  26. }  

 

LoginController类:

 

Java代码 
  1. package com.pb.web.controller;  
  2.   
  3. import java.util.HashMap;  
  4. import java.util.Map;  
  5.   
  6. import javax.servlet.http.HttpServletRequest;  
  7. import javax.servlet.http.HttpServletResponse;  
  8.   
  9. import org.springframework.web.servlet.ModelAndView;  
  10. import org.springframework.web.servlet.mvc.AbstractController;  
  11.   
  12. import com.pb.entity.Account;  
  13.   
  14. public class LoginController extends AbstractController {  
  15.     private String successView;  
  16.     private String failView;//这两个参数是返回值传给applicationContext.xml,进行页面分配  
  17.       
  18.     public String getSuccessView() {  
  19.         return successView;  
  20.     }  
  21.     public void setSuccessView(String successView) {  
  22.         this.successView = successView;  
  23.     }  
  24.     public String getFailView() {  
  25.         return failView;  
  26.     }  
  27.     public void setFailView(String failView) {  
  28.         this.failView = failView;  
  29.     }  
  30.     @Override  
  31.     protected ModelAndView handleRequestInternal(HttpServletRequest request,  
  32.             HttpServletResponse response) throws Exception {  
  33.         // TODO Auto-generated method stub  
  34.         String cardNo=request.getParameter("cardNo");  
  35.         String password=request.getParameter("password");  
  36.         Account account =getAccount(cardNo,password);  
  37.         Map<String ,Object> model=new HashMap<String,Object>();  
  38.         if(account !=null){  
  39.             model.put("account", account);  
  40.             return new ModelAndView(getSuccessView(),model);  
  41.         }else{  
  42.             model.put("error""卡号和密码不正确");  
  43.             return new ModelAndView(getFailView(),model);  
  44.         }         
  45.     }//本应该这个方法写在模型层,这地方直接给放在了逻辑层这个地方偷懒了。  
  46.     public Account getAccount(String cardNo,String password){  
  47.         if(cardNo.equals("123")&&password.equals("123")){  
  48.             Account account =new Account();  
  49.             account.setCardNo(cardNo);  
  50.             account.setBalance(88.8f);  
  51.             return account;  
  52.         }else{  
  53.             return null;  
  54.         }  
  55.     }  
  56.   
  57. }  
applicationContext.xml

 

 

Html代码 
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2.   
  3. <beans xmlns="http://www.springframework.org/schema/beans"  
  4.          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  5.          xmlns:aop="http://www.springframework.org/schema/aop"  
  6.          xmlns:tx="http://www.springframework.org/schema/tx"  
  7.          xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd  
  8.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd  
  9.            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">  
  10.     <bean id="loginController" class="com.pb.web.controller.LoginController">  
  11.         <property name="successView" value="showAccount"></property>  
  12.         <property name="failView" value="login"></property>  
  13.     </bean>  
  14.     <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">  
  15.         <property name="mappings">  
  16.             <props>  
  17.                 <prop key="/login.do">loginController</prop>  
  18.             </props>  
  19.         </property>  
  20.     </bean>  
  21.     <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
  22.         <property name="prefix" value="/"></property>  
  23.         <property name="suffix" value=".jsp"></property>  
  24.     </bean>  
  25. </beans>  

Jsp页面:

 

Html代码 
  1. <%@ page language="java" contentType="text/html; charset=GB18030"  
  2.     pageEncoding="GB18030"%>  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  4. <html>  
  5. <head>  
  6. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">  
  7. <title>Insert title here</title>  
  8. </head>  
  9. <body>  
  10.     <a href="login.jsp">进入</a>  
  11.   
  12. </body>  
  13. </html>  
login.jsp

 

 

Html代码 
  1. <%@ page language="java" contentType="text/html; charset=GB18030"  
  2.     pageEncoding="GB18030"%>  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  4. <html>  
  5. <head>  
  6. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">  
  7. <title>Insert title here</title>  
  8. </head>  
  9. <body>  
  10. ${error }  
  11.     <form action="login.do" method="post">  
  12.         账号登陆<br>  
  13.         <hr>        
  14.         卡号:<input type="text" name="cardNo"><br>  
  15.         密码:<input type="text" name="password"><br>  
  16.         <input type="submit" value="登陆">  
  17.     </form>  
  18.   
  19. </body>  
  20. </html>  
showAccount.jsp

 

 

Html代码 
  1. <%@ page language="java" contentType="text/html; charset=GB18030"  
  2.     pageEncoding="GB18030"%>  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  4. <html>  
  5. <head>  
  6. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">  
  7. <title>Insert title here</title>  
  8. </head>  
  9. <body>  
  10.     账户信息<br>  
  11.     卡号:${account.cardNo }<br>  
  12.     密码:${account.password }<br>  
  13.     钱数:${account.balance }<br>  
  14. </body>  
  15. </html>  
Web.xml
Html代码 
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
  3.             xmlns="http://java.sun.com/xml/ns/j2ee"   
  4.             xmlns:javaee="http://java.sun.com/xml/ns/javaee"   
  5.             xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">  
  6.   <welcome-file-list>  
  7.     <welcome-file>index.jsp</welcome-file>  
  8.   </welcome-file-list>  
  9.   <servlet>  
  10.     <servlet-name>Dispatcher</servlet-name>  
  11.     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  
  12.     <init-param>  
  13.         <param-name>contextConfigLocation</param-name>  
  14.         <param-value>classpath:applicationContext.xml</param-value>  
  15.     </init-param>  
  16.   </servlet>  
  17.   <servlet-mapping>  
  18.     <servlet-name>Dispatcher</servlet-name>  
  19.     <url-pattern>*.do</url-pattern>  
  20.   </servlet-mapping>    
  21. </web-app>  
工程原码:原码

SpringMVC总结


以上就是我理解的Spring MVC可能不够深刻。其实对于任何的框架来说,一个框架是一个可复用设计,框架的最大的好处就是复用。每个框架都有存在的理由,那Spring MVC的理由是什么呢?

那么就请看一下这篇文章Struts和SpringMVC两种MVC框架比较,这篇文章总结的我个人认为总结的挺好。

只有各个框架之间彼此了解他们之间的优缺点,使用场合,使用原理,才能让我们的更快的成长。

想要了解更多Spring请从(Spring程序员的春天)开始

【数据驱动】【航空航天结构的高效损伤检测技术】一种数据驱动的结构健康监测(SHM)方法,用于进行原位评估结构健康状态,即损伤位置和程度,在其中利用了选定位置的引导式兰姆波响应(Matlab代码实现)内容概要:本文介绍了一种基于数据驱动的结构健康监测(SHM)方法,利用选定位置的引导式兰姆波响应对航空航天等领域的结构进行原位损伤检测,实现对损伤位置与程度的精确评估,相关方法通过Matlab代码实现,具有较强的工程应用价值。文中还提到了该技术在无人机、水下机器人、太阳能系统、四轴飞行器等多个工程领域的交叉应用,展示了其在复杂系统状态监测与故障诊断中的广泛适用性。此外,文档列举了大量基于Matlab/Simulink的科研仿真资源,涵盖信号处理、路径规划、机器学习、电力系统优化等多个方向,构成一个综合性科研技术支持体系。; 适合人群:具备一定Matlab编程基础,从事航空航天、结构工程、智能制造、自动化等相关领域研究的研究生、科研人员及工程技术人员。; 使用场景及目标:①用于航空航天结构、无人机机体等关键部件的实时健康监测与早期损伤识别;②结合兰姆波信号分析与数据驱动模型,提升复杂工程系统的故障诊断精度与可靠性;③为科研项目提供Matlab仿真支持,加速算法验证与系统开发。; 阅读建议:建议读者结合文档提供的Matlab代码实例,深入理解兰姆波信号处理与损伤识别算法的实现流程,同时可参考文中列出的多种技术案例进行横向拓展学习,强化综合科研能力。
【无人机论文复现】空地多无人平台协同路径规划技术研究(Matlab代码实现)内容概要:本文围绕“空地多无人平台协同路径规划技术”的研究展开,重点在于通过Matlab代码实现对该技术的论文复现。文中详细探讨了多无人平台(如无人机与地面车辆)在复杂环境下的协同路径规划问题,涉及三维空间路径规划、动态避障、任务分配与协同控制等关键技术,结合智能优化算法(如改进粒子群算法、遗传算法、RRT等)进行路径求解与优化,旨在提升多平台系统的协作效率与任务执行能力。同时,文档列举了大量相关研究主题,涵盖无人机控制、路径规划、多智能体协同、信号处理、电力系统等多个交叉领域,展示了该方向的技术广度与深度。; 适合人群:具备一定Matlab编程基础和路径规划背景的研究生、科研人员及从事无人机、智能交通、自动化等相关领域的工程技术人员。; 使用场景及目标:①用于学术论文复现,帮助理解空地协同路径规划的核心算法与实现细节;②支撑科研项目开发,提供多平台协同控制与路径优化的技术参考;③作为教学案例,辅助讲授智能优化算法在无人系统中的实际应用。; 阅读建议:建议结合提供的Matlab代码进行实践操作,重点关注算法实现流程与参数设置,同时可参照文中列出的其他相关研究方向拓展技术视野,建议按目录顺序系统学习,并充分利用网盘资源进行仿真验证。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值