SpringMVC处理请求的工作流程

Spring简介

DI(Dependency Injection):依赖注入,四种注入方式

IOC(Iversion of Controller):控制反转

AOP(Aspect-Oriented Programming):面向切面编程,包括Spring的声明式事务管理

处理请求流程

1.客户端发送请求到后台服务器;

2.springmvc核心控制器DispatcherServlet统一接收请求,并根据请求的url找到HandlerMapping映射的Controller;

3.Controller里面调用业务方法完成业务处理,包括与持久层交互,完成数据持久化;

4.Controller处理完业务方法后返回对应的ModelAndView(模型视图)对象,包含了返回的页面以及数据模型;

5.DispatcherServlet接收返回的ModelAndView对象,通过ViewResolver视图解析器找到对应的界面并进行页面渲染,最后页面在前端呈现出来。

applicationContext.xml


<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">bean>

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
      <property name="dataSource">
             <ref bean="dataSource" />
      property>bean>
  
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
      
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>  
    
    <property name="prefix" value="/view/"/>  
    
    <property name="suffix" value=".jsp"/>  
bean>


      <property name="sessionFactory" ref="sessionFactory" />
bean>

<tx:advice id="transactionAdvice" transaction-manager="transactionManager">
      <tx:attributes>
             <tx:method name="delete*" propagation="REQUIRED" />
             
      tx:attributes>
tx:advice>
<aop:config>
      <aop:pointcut id="transactionPointcut"  expression="execution(* com. store.impl..*.*(..))" />
      <aop:advisor pointcut-ref="transactionPointcut" advice-ref="transactionAdvice" />
aop:config>

Web.xml


<servlet>
      <servlet-name>springmvcservlet-name> 
      <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
      <init-parm>
              <parm-name>contextConfigLocationparm-name>
              <parm-value>classpath:applicationContext.xmlparm-value>
      init-parm>
servlet>
<servlet-mapping>
      <servlet-name>springmvcservlet-name>
      <url-pattern>*.actionurl-pattern>
servlet-mapping>

你可能感兴趣的:(java,springmvc,spring)