博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SSH三大框架整合使用的配置文件 注解实现
阅读量:5301 次
发布时间:2019-06-14

本文共 5138 字,大约阅读时间需要 17 分钟。

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

转载于:https://www.cnblogs.com/a757956132/p/3904938.html

你可能感兴趣的文章
数据类型
查看>>
ajax请求无法下载文件
查看>>
你真的很熟分布式和事务吗?
查看>>
接口测试 总结(什么是接口测试)
查看>>
cliendataset中自增长字段的处理
查看>>
.NET 4.6的RyuJIT尾递归优化的Bug
查看>>
软件开发模型
查看>>
centos安装VSFTP
查看>>
面向对象设计模式系列文章之---NO.1
查看>>
生成缩率图项目实例
查看>>
Sql server 大全
查看>>
Java Enum 浅析
查看>>
ASP.NET 缓存技术(一)——启用页面输出缓存
查看>>
Codeforces Round #420 (Div. 2)
查看>>
[解题报告]HDU 1720 A+B Coming
查看>>
Oracle 了解 DDL 操作与 REDO 的关系
查看>>
【LeetCode】75-颜色分类
查看>>
ajax调用webservice
查看>>
换行符在textarea、div、pre中的区别
查看>>
大数除法。。。赶得好急,借鉴牛人的写法了
查看>>