1 Struts。xml 使用拦截器

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
    "http://struts.apache.org/dtds/struts-2.1.7.dtd">

<struts>
    <include file="struts-user.xml"/>
    <include file="struts-order.xml"/>
    <include file="struts-cart.xml"/>
    <include file="struts-main.xml"/>
    <package name="dang-Default" extends="json-default">
        <!-- <interceptors>
            <interceptor name="transaction"
            class="com.tarena.dang.interceptor.TransactionInterceptor"/>
            <interceptor-stack name="dangStack">
                <interceptor-ref name="transaction"/>
                <interceptor-ref name="defaultStack"/>
            </interceptor-stack>
        </interceptors>
        所有Action请求使用dangStack拦截器
        <default-interceptor-ref name="dangStack"/>
        指定默认响应的Action
        <default-action-ref name="index"/>
        
        定义共通的拦截器,Result和Action组件
        <global-results>
            <result name="error">
                /error.jsp
            </result>
        </global-results>
        
        <global-exception-mappings>
            <exception-mapping
                    exception="java.lang.Exception"
                    result="error"/>
        </global-exception-mappings> -->
    
        <!-- 处理默认响应的Action,
        以redirect方式调用/mian空间下
        的index请求的Action -->
        <action name="index">
            <result type="redirectAction">
                <param name="namespace">/main</param>
                <param name="actionName">index</param>
            </result>
        </action>
    
    </package>
    
</struts>

 2.Spring 的配置文件

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
    <!-- 指定properties文件,后面使用${}获取 -->
    <context:property-placeholder location="classpath:db.properties" />

<bean id="dataSource" destroy-method="close"
        class="org.apache.commons.dbcp.BasicDataSource">
        <property name="url" value="${url}">
        </property>
        <property name="driverClassName" value="${driverClassName}">
        </property>
        <property name="username" value="${username}">
        </property>
        <property name="password" value="${password}">
        </property>
        <property name="initialSize" value="${initialSize}">
        </property>
        <property name="maxActive" value="${maxActive}">
        </property>
    </bean>

<bean id="sessionFactory"
        class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource">
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="dialect">${dialect}</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.format_sql">true</prop>
                <!-- 如果在Dao中使用private SessionFactory sessionFactory;
                                 private Session getSession(){
                                    return sessionFactory.openSession();
                                 }
                必须加入该语句                  -->
                <prop key="hibernate.current_session_context_class">thread</prop>  
            </props>
        </property>
    <!--     <property name="current_session_context_class">thread</property>  -->
        
<!--    出现问题

   <property name="mappingResources"
            value="classpath:com/tarena/dang/pojo/*.hbm.xml">
        </property>
         -->
         <property name="mappingResources">
            <list>
                <value>com/tarena/dang/pojo/DBook.hbm.xml</value>
                <value>com/tarena/dang/pojo/DCategory.hbm.xml</value>
                <value>com/tarena/dang/pojo/DCategoryProduct.hbm.xml</value>
                <value>com/tarena/dang/pojo/DComment.hbm.xml</value>
                <value>com/tarena/dang/pojo/DCommentReply.hbm.xml</value>
                <value>com/tarena/dang/pojo/DItem.hbm.xml</value>
                <value>com/tarena/dang/pojo/DOrder.hbm.xml</value>
                <value>com/tarena/dang/pojo/DProduct.hbm.xml</value>
                <value>com/tarena/dang/pojo/DSendWay.hbm.xml</value>
                <value>com/tarena/dang/pojo/DUser.hbm.xml</value>
            </list>
        </property>
    </bean>

<context:component-scan base-package="com.tarena.dang"></context:component-scan>
    
    
</beans>

3. web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
 
      <filter>
        <filter-name>struts2filter</filter-name>
        <filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
        </filter-class>
    </filter>
    
    <filter-mapping>
        <filter-name>struts2filter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext-*.xml</param-value>
    </context-param>
 
  <listener>
      <listener-class>
org.springframework.web.context.ContextLoaderListener
      </listener-class>
  </listener>
 
  <listener>
      <listener-class>
org.springframework.web.context.request.RequestContextListener
      </listener-class>
  </listener>
 
 
  <welcome-file-list>
    <welcome-file>/user/userForm.jsp</welcome-file>
  </welcome-file-list>
</web-app>

有些问题的解释:http://hengstart.iteye.com/blog/858081

SSH三大框架整合使用的配置文件 注解实现的更多相关文章

  1. Maven SSH三大框架整合的加载流程

    <Maven精品教程视频\day02视频\03ssh配置文件加载过程.avi;> 此课程中讲 SSH三大框架整合的加载流程,还可以,初步接触的朋友可以听一听. < \day02视频\ ...

  2. SSH三大框架整合案例

    SSH三大框架的整合   SSH三个框架的知识点 一.Hibernate框架 1. Hibernate的核心配置文件 1.1 数据库信息.连接池配置 1.2 Hibernate信息 1.3 映射配置 ...

  3. JavaWeb_(SSH)三大框架整合struts+hibernate+spring_Demo

    三大框架整合 一.SSH导包 二.书写Spring 三.书写Struts 四.整合Spring与Struts 五.书写(与整合)Hibernate.引入c3p0连接池并使用hibernate模板 六. ...

  4. SSH三大框架整合配置详解

    首先,三大框架整合,肯定是要导入相当多的jar包,这是不容置疑的!     这里就不一一列举了,直接截图吧:             (1) 基于配置文件的整合:        第一步:我们需要在we ...

  5. 关于ssh三大框架整合的碎碎念

    三大框架整合,无非就是一个导jar包,修改配置文件的过程.完了就没事了. 还是有很多细节性的问题 比如在spring中写applicationContext.xml文件时不提示: 解决方法如下: 如果 ...

  6. SSH 三大框架整合

    Spring整合web项目 在Servlet当中直接加载配置文件,获取对象 存在问题 每次请求都会创建一个Spring的工厂,这样浪费服务器资源,应该一个项目只有一个Spring的工厂. 在服务器启动 ...

  7. JAVAEE——SSH三大框架整合(spring+struts2+hibernate)

    一.整合原理 二.导包(41个) 1.hibernate (1)hibernate/lib/required (2)hibernate/lib/jpa | java persist api java的 ...

  8. SSH三大框架整合步骤

    Struts2:需要整合的第一个框架: 1.创建一个动态web项目 2.导入struts2必须的jar 放到 lib目录下 ,再 build path 添加web工程中 3.配置struts2的核心配 ...

  9. SSH三大框架整合配置详细步骤(3)

    5 配置Spring2.5 5.1 基础配置 1)        导入spring包.下载spring-framework-2.5.6并解压后,在spring-framework-2.5.6" ...

随机推荐

  1. HTMLayout界面CSSS样式解析笔记

    HTMLayout学习笔记 by BBDXF 一.界面篇 学习界面需要有一定的HTML.CSS认知,如果你问为什么,那就当我白说. 由于界面库官方没有给一个完善的User guide,所有的学习都靠自 ...

  2. POJ 3084 Panic Room (最小割建模)

    [题意]理解了半天--大意就是,有一些房间,初始时某些房间之间有一些门,并且这些门是打开的,也就是可以来回走动的,但是这些门是确切属于某个房间的,也就是说如果要锁门,则只有在那个房间里才能锁. 现在一 ...

  3. LeetCode Swap Nodes in Pairs 交换结点对(单链表)

    题意:给一个单链表,将其每两个结点交换,只改尾指针,不改元素值. 思路:迭代法和递归法都容易写,就写个递归的了. 4ms /** * Definition for singly-linked list ...

  4. 关于python中使用mongodb模块,save和insert的小问题

    今天写python脚本的时候发现这样一个问题: import os , string , datetime ,pymongo; conn = pymongo.Connection("127. ...

  5. ASP.NET缓存策略经验谈

    要提升ASP.NET应用程序的性能,最简单.最有效的方式就是使用内建的缓存引擎.虽然也能构建自己的缓存,但由于缓存引擎已提供了如此多的功能,所以完全不必如此麻烦.在很大程度上,ASP.NET开发者在W ...

  6. Oracle数据库中的违规策略规则的修正

    如笔者计算机上违规的策略与规则: 为了安全,可如下方式对齐进行修正:

  7. Hadoop集群中Hbase的介绍、安装、使用

    导读 HBase – Hadoop Database,是一个高可靠性.高性能.面向列.可伸缩的分布式存储系统,利用HBase技术可在廉价PC Server上搭建起大规模结构化存储集群. 一.Hbase ...

  8. codeforces 681D Gifts by the List dfs+构造

    题意:给你一个森林,表示其祖先关系(自己也是自己的祖先),每个人有一个礼物(要送给这个人的固定的一个祖先) 让你构造一个序列,使得的对于每个人,这个序列中第一个出现的他的祖先,是他要送礼物的的那个祖先 ...

  9. linux的文件属性介绍、目录及路径表示方法

    一.认识linux文件 认识linux下的文件需要先学习命令:ls. 该命令用于显示指定目录下的内容,其中最常用的参数有: -l显示目录和文件的完整属性信息 -a显示所有文件和目录,包含隐藏文件和目录 ...

  10. 用duilib制作仿QQ2013动态背景登录器

    转载请说明原出处,谢谢~~ 在上一篇博客里,我修复了CActiveXUI控件的bug,从而可以使用flash动画来制作程序的背景,这篇博客说明一下应该怎么使用CActiveXUI控件创建透明无窗体的背 ...