以文本方式查看主题

-  中文XML论坛 - 专业的XML技术讨论区  (http://bbs.xml.org.cn/index.asp)
--  『 Java/Eclipse 』  (http://bbs.xml.org.cn/list.asp?boardid=41)
----  [分享]JavaSpring部署描述文件  (http://bbs.xml.org.cn/dispbbs.asp?boardid=41&rootid=&id=76717)


--  作者:repairbug
--  发布时间:9/14/2009 9:29:00 AM

--  [分享]JavaSpring部署描述文件
资料来自:【中华IT学习网】www.100itxx.com,里面有真题解析和在线测试,你可以去看看。
资格:无任何限制
<!-- src目录下-->
<?xml version="1.0" encoding="UTF-8"?>
<!--
  - Middle tier application context definition for the image database.
  -->
<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: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/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
    <aop:aspectj-autoproxy/>
    
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="url" value="jdbc:oracle:thin:@192.168.1.223:1521:orcl"/>
    <property name="username" value="teleflat"/>
    <property name="password" value="123456"/>
        </bean>

  <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="mappingResources">
      <list>
<!-- add hbm.xml here
<value>
net/splendot/teleflat/employeeMgr/baseEmp/vo/BaseEmpModel.hbm.xml</value>
-->
</list>
</property>
<property name="hibernateProperties">
<value>
    hibernate.dialect=org.hibernate.dialect.OracleDialect
</value>
</property>
</bean>        
<tx:annotation-driven transaction-manager="txManager"/>          
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
          </bean>
    </beans>


W 3 C h i n a ( since 2003 ) 旗 下 站 点
苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
6,468.750ms