A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

xxf

注册黑马

  • 黑马币:1

  • 帖子:10

  • 精华:0

© xxf 注册黑马   /  2012-10-18 22:14  /  1282 人查看  /  7 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

的发生的发生鼎折覆餗第三方发的说法三打三防范德萨放到的是非得失的是非得失第三方是多少发生发生的

struts2.2.3.1.chm

1.62 MB, 下载次数: 123

7 个回复

倒序浏览
xxf 注册黑马 2012-10-18 22:15:42
沙发
发的说法
回复 使用道具 举报
xxf 注册黑马 2012-10-18 22:17:09
藤椅
的发生的范德萨富地方是发的是范德萨地方地方

struts2.2.3.1.chm

1.62 MB, 下载次数: 123

回复 使用道具 举报
xxf 注册黑马 2012-10-18 22:21:11
板凳
发的说法第三方的
回复 使用道具 举报
xxf 注册黑马 2012-10-18 22:25:14
报纸
xxf 发表于 2012-10-18 22:15
发的说法

福德宫发的说法是范德萨
回复 使用道具 举报
xxf 注册黑马 2012-10-18 22:26:35
地板
xxf 发表于 2012-10-18 22:25
福德宫发的说法是范德萨

你好你好你好你
回复 使用道具 举报
xxf 注册黑马 2012-10-18 22:29:01
7#
回复 使用道具 举报
xxf 注册黑马 2012-10-18 22:30:02
8#
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. - <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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/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">
  3.   <context:component-scan base-package="cn.ibook" />
  4. - <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
  5.   <property name="driverClass" value="com.mysql.jdbc.Driver" />
  6.   <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/Ibook?useUnicode=true&characterEncoding=UTF-8" />
  7.   <property name="user" value="root" />
  8.   <property name="password" value="123xf" />
  9.   <property name="initialPoolSize" value="1" />
  10.   <property name="minPoolSize" value="1" />
  11.   <property name="maxPoolSize" value="300" />
  12.   <property name="maxIdleTime" value="60" />
  13.   <property name="acquireIncrement" value="5" />
  14.   <property name="idleConnectionTestPeriod" value="60" />
  15.   </bean>
  16. - <bean name="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  17.   <property name="dataSource" ref="dataSource" />
  18. - <property name="mappingResources">
  19. - <list>
  20.   <value>cn/ibook/bbs/bean/Article.hbm.xml</value>
  21.   <value>cn/ibook/bbs/bean/Attachment.hbm.xml</value>
  22.   <value>cn/ibook/bbs/bean/Category.hbm.xml</value>
  23.   <value>cn/ibook/bbs/bean/Forum.hbm.xml</value>
  24.   <value>cn/ibook/bbs/bean/Role.hbm.xml</value>
  25.   <value>cn/ibook/bbs/bean/SystemPrivilege.hbm.xml</value>
  26.   <value>cn/ibook/bbs/bean/User.hbm.xml</value>
  27.   </list>
  28.   </property>
  29. - <property name="hibernateProperties">
  30.   <value>hibernate.dialect=org.hibernate.dialect.MySQL5Dialect hibernate.hbm2ddl.auto=update hibernate.show_sql=true hibernate.format_sql=true hibernate.cache.use_second_level_cache=true hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider</value>
  31.   </property>
  32.   </bean>
  33. - <!--  配置Hibernate的局部事务管理器,使用HibernateTransactionManager类
  34.   -->
  35. - <!--  该类实现PlatformTransactionManager接口,是针对Hibernate的特定实现
  36.   -->
  37. - <!--  并注入SessionFactory的引用
  38.   -->
  39.   <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager" p:sessionFactory-ref="sessionFactory" />
  40. - <!--  配置事务增强处理Bean,指定事务管理器
  41.   -->
  42. - <tx:advice id="txAdvice" transaction-manager="transactionManager">
  43. - <!--  用于配置详细的事务语义
  44.   -->
  45. - <tx:attributes>
  46. - <!--  所有以'get'开头的方法是read-only的
  47.   -->
  48.   <tx:method name="get*" read-only="true" />
  49. - <!--  其他方法使用默认的事务设置
  50.   -->
  51.   <tx:method name="*" />
  52.   </tx:attributes>
  53.   </tx:advice>
  54.   </beans>
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马