日期:2014-05-17 浏览次数:20730 次
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd"> <struts> <constant name="struts.devMode" value="true"></constant> <constant name="struts.objectFactory" value="spring"></constant> <package name="Microblogging" extends="struts-default"> <action name="UserLoginAndRegist" class="cn.edu.bzu.Microblogging.Action.UserLoginAndRegist"> <result name="success">/jsp/webPage/user_index.jsp</result> <result name="input">/jsp/prompt/regist_prompt_failure.jsp</result> </action> </package> </struts>
<?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:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" 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 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="configLocation"><value>classpath:hibernate.cfg.xml</value></property> </bean> <!-- 事务管理器 --> <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory"/> </bean> <aop:config proxy-target-class="false"> <aop:pointcut id="transactionPointcut" expression="execution(* cn.edu.bzu.Microblogging..*.*(..))"/> <aop:advisor advice-ref="txAdvice" pointcut-ref="transactionPointcut"/> </aop:config> <!-- 通知 --> <tx:advice id="txAdvice" transaction-manager="txManager"> <tx:attributes> <tx:method name="get*" read-only="true" propagation="NOT_SUPPORTED"/> <tx:method name="*"/> </tx:attributes> </tx:advice> <!-- Spring自动扫描 --> <context:component-scan base-package="cn.edu.bzu.Microblogging"/> </beans>
推荐阅读更多>
- 怎样学习J2ME解决思路
- 表单中有几个按钮,点击不同的按钮跳转到不同页面解决思路
- 关于 StringBuffer 的有关问题
- protected static跟public static有区别吗
- 一个二维数组列数的取得的有关问题
- 基于J2ME的手机浏览器的开发解决方案
- <jsp:setProperty name="person" property=""/>中的"/"解决思路
- jdbc执行sql语句怎么实现在console控制台中显示执行过的sql语句
- 求教 单列方式中延迟初始化和急切初始化的区别
- jsp用什么在线编辑器 FCKeditor不能安插图片
- 郁闷啊hibernate中的saveOrUpdate该如何用
- 有哪位兄弟对EDI(电子商务数据交换)标准有所了解的吗?可能的话是否可以提供一些相关文档给小弟我
- js调用自个儿用VC开发的ocx,浏览器提示对象不支持此属性或方法
- 请问弹出路径选择窗口的解决方案
- jsp中操作xml运行不了?解决方法
- 求教~String转换为byte类型十六进制数,
- Windows 2003 Server中文版+IIS6+Tomcat-5.0.28整合后怎么设置默认页的有关问题
- 上传文件到网络映射盘,该如何解决
- java 中 9>>二 =1
- 在浏览器进去struts2的action 报错404