Struts+Spring+Hibernate精简配制【文件】

1.web.xml

<? xml version="1.0" encoding="UTF-8" ?>
< web-app  xmlns ="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"  version ="2.4"
    xsi:schemaLocation
="http://java.sun.com/xml/ns/j2ee   http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >

    
< context-param >
        
< param-name > contextConfigLocation </ param-name >
        
< param-value > /WEB-INF/applicationContext*.xml </ param-value >
    
</ context-param >
    
< listener >
        
< listener-class >
            org.springframework.web.context.ContextLoaderListener
        
</ listener-class >
    
</ listener >

    
< servlet >
        
< servlet-name > action </ servlet-name >
        
< servlet-class >
            org.apache.struts.action.ActionServlet
        
</ servlet-class >
        
< init-param >
            
< param-name > config </ param-name >
            
< param-value >
                /WEB-INF/struts-config.xml,/WEB-INF/struts-config-form.xml,/WEB-INF/struts-config-action.xml
            
</ param-value >
        
</ init-param >
        
< init-param >
            
< param-name > debug </ param-name >
            
< param-value > 3 </ param-value >
        
</ init-param >
        
< init-param >
            
< param-name > detail </ param-name >
            
< param-value > 3 </ param-value >
        
</ init-param >
        
< load-on-startup > 0 </ load-on-startup >
    
</ servlet >
    
< servlet-mapping >
        
< servlet-name > action </ servlet-name >
        
< url-pattern > *.do </ url-pattern >
    
</ servlet-mapping >
    
< session-config >
        
< session-timeout > 120 </ session-timeout >
    
</ session-config >

    
<!--  The Usual Welcome File List  -->
    
< welcome-file-list >
        
< welcome-file > login.jsp </ welcome-file >
    
</ welcome-file-list >

    
<!--  Tag Library Descriptors -->
    
< jsp-config >
        
< taglib >
            
< taglib-uri > /WEB-INF/tld/struts-bean.tld </ taglib-uri >
            
< taglib-location >
                /WEB-INF/tld/struts-bean.tld
            
</ taglib-location >
        
</ taglib >
        
< taglib >
            
< taglib-uri > /WEB-INF/tld/struts-html.tld </ taglib-uri >
            
< taglib-location >
                /WEB-INF/tld/struts-html.tld
            
</ taglib-location >
        
</ taglib >
        
< taglib >
            
< taglib-uri > /WEB-INF/tld/struts-logic.tld </ taglib-uri >
            
< taglib-location >
                /WEB-INF/tld/struts-logic.tld
            
</ taglib-location >
        
</ taglib >
        
< taglib >
            
< taglib-uri > /WEB-INF/tld/struts-nested.tld </ taglib-uri >
            
< taglib-location >
                /WEB-INF/tld/struts-nested.tld
            
</ taglib-location >
        
</ taglib >
        
< taglib >
            
< taglib-uri > /WEB-INF/tld/struts-template.tld </ taglib-uri >
            
< taglib-location >
                /WEB-INF/tld/struts-template.tld
            
</ taglib-location >
        
</ taglib >
        
< taglib >
            
< taglib-uri > /WEB-INF/tld/struts-tiles.tld </ taglib-uri >
            
< taglib-location >
                /WEB-INF/tld/struts-tiles.tld
            
</ taglib-location >
        
</ taglib >
    
</ jsp-config >
</ web-app >

2.applicationContext-persistence.xml

<? xml version="1.0" encoding="UTF-8" ?>
<! DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans-2.0.dtd"
>
< beans >

    
<!--   配置数据源  -->
    
< bean  id ="dataSource"
        class
="org.apache.commons.dbcp.BasicDataSource"
        destroy-method
="close" >
        
< property  name ="driverClassName" >
            
< value > oracle.jdbc.driver.OracleDriver </ value >
        
</ property >
        
< property  name ="url" >
            
< value > jdbc:oracle:thin:@localhost:1521:ora9i </ value >
        
</ property >
        
< property  name ="username" >
            
< value > tom </ value >
        
</ property >
        
< property  name ="password" >
            
< value > tom </ value >
        
</ property >
    
</ bean >

    
<!--  配置Hibernate  -->
    
< bean  id ="sessionFactory"
        class
="org.springframework.orm.hibernate3.LocalSessionFactoryBean" >
        
< property  name ="dataSource" >
            
< ref  local ="dataSource"   />
        
</ property >
        
< property  name ="mappingResources" >
            
< list >
                
< value > com/example/entity/User.hbm.xml </ value >
            
</ list >
        
</ property >
        
< property  name ="hibernateProperties" >
            
< props >
                
< prop  key ="hibernate.dialect" >
                    org.hibernate.dialect.Oracle9Dialect
                
</ prop >
                
< prop  key ="hibernate.show_sql" > true </ prop >
            
</ props >
        
</ property >
    
</ bean >

    
<!--  配置事务  -->
    
< bean  id ="transactionManager"
        class
="org.springframework.orm.hibernate3.HibernateTransactionManager" >
        
< property  name ="sessionFactory" >
            
< ref  local ="sessionFactory"   />
        
</ property >
    
</ bean >

    
< bean  id ="transactionInterceptor"
        class
="org.springframework.transaction.interceptor.TransactionInterceptor" >
        
< property  name ="transactionManager"  ref ="transactionManager"   />
        
< property  name ="transactionAttributes" >
            
< props >
                
< prop  key ="find*" > PROPAGATION_REQUIRED,readOnly </ prop >
                
< prop  key ="save*" > PROPAGATION_REQUIRED </ prop >
                
< prop  key ="update*" > PROPAGATION_REQUIRED </ prop >
                
< prop  key ="delete*" > PROPAGATION_REQUIRED </ prop >
            
</ props >
        
</ property >
    
</ bean >

    
< bean  id ="transactionProxyCreator"
        class
="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator" >
        
< property  name ="proxyTargetClass"   >
               
< value > true </ value >
          
</ property >
        
< property  name ="beanNames" >
            
< list >
                
< value > *Service </ value >
            
</ list >
        
</ property >
        
< property  name ="interceptorNames" >
            
< list >
                
< value > transactionInterceptor </ value >
            
</ list >
        
</ property >
    
</ bean >

</ beans >

3.applicationContext-action.xml

<? xml version="1.0" encoding="UTF-8" ?>
<! DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd" >
< beans >

    
<!--  example  -->
    
< bean  name ="/login"  class ="com.example.actions.LoginAction" >
        
< property  name ="userService" >
            
< ref  bean ="userService"   />
        
</ property >
    
</ bean >

</ beans >

4.applicationContext-service.xml

<? xml version="1.0" encoding="UTF-8" ?>
<! DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd" >
< beans >

    
<!--  example  -->
    
< bean  id ="userService"
        class
="com.example.service.UserService" >
        
< property  name ="userDAO" >
            
< ref  bean ="userDAO"   />
        
</ property >
    
</ bean >
    
</ beans >

5.applicationContext-dao.xml

<? xml version="1.0" encoding="UTF-8" ?>
<! DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd" >
< beans >

    
<!--  example  -->
    
< bean  id ="userDAO"  class ="com.example.dao.UserDAO" >
        
< property  name ="sessionFactory" >
            
< ref  bean ="sessionFactory"   />
        
</ property >
    
</ bean >
    

</ beans >

6.struts-config.xml

&
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值