<?xml version="1.0" encoding="UTF-8"?>
<!-- 开启自动织入功能 -->
<beans default-autowire="byName"
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.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.0.xsd ">
<!-- 配置会话工厂 -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation"
value="classpath:hibernate.cfg.xml">
</property>
</bean>
<!-- 配置事务管理器 -->
<bean id="transactionmanager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager" />
<!-- 配置事务管理策略 -->
<tx:advice id="txAdvice" transaction-manager="transactionmanager">
<tx:attributes>
<tx:method name="add*" propagation="REQUIRED" />
<tx:method name="delete*" propagation="REQUIRED" />
<tx:method name="update*" propagation="REQUIRED" />
<tx:method name="login" propagation="REQUIRED" />
<tx:method name="find*" propagation="SUPPORTS"
read-only="true" />
<tx:method name="*" propagation="SUPPORTS" read-only="true" />
</tx:attributes>
</tx:advice>
<!-- 配置AOP -->
<aop:config>
<aop:pointcut id="allBiz"
expression="execution(* com.sdna.sws.rbac.model.service.impl.*.*(..))" />
<!-- 配置事务切面 -->
<aop:advisor pointcut-ref="allBiz" advice-ref="txAdvice" />
<!-- 配置权限拦截切面 -->
<aop:aspect ref="roleInterceptor">
<aop:before pointcut-ref="allBiz" method="before"/>
</aop:aspect>
</aop:config>
<!-- 权限验证拦截器 -->
<bean id="roleInterceptor"
class="com.sdna.sws.rbac.model.interceptor.RoleInterceptor" />
<!-- 导入配置文件 -->
<import resource="bean-dao.xml"/>
<import resource="bean-service.xml"/>
<import resource="bean-action.xml"/>
</beans>
分享到:
相关推荐
- 在【tutorial-web】模块的pom.xml中配置特定于Web层的依赖。 ##### 3.6 运行测试WEB模块 - 测试Web模块的功能是否正常工作。 ##### 3.7 编写简单的Struts控制的页面 - 创建简单的页面,用于展示和测试。 - 使用...
- `application.properties` 或 `application.yml`:Spring Boot的主配置文件。 - `src/main/webapp`(如果是Web应用):存放HTML、CSS、JavaScript等前端资源。 总的来说,"test-mybatis-04.rar" 提供了一个实践...
- **applicationContent.xml**:可能是特定于项目的配置文件,用于存储应用程序级别的配置信息。 - **Hibernate.cfg.xml**:Hibernate的核心配置文件,用于设置Hibernate的运行时行为参数。 - **Struts.xml**:...
根据提供的文件信息,我们可以深入探讨如何整合SSH框架(Struts2.0 + Hibernate + Spring),并结合具体的代码示例来理解整个项目的结构和技术要点。 ### 项目架构与目录结构 项目采用的是经典的三层架构,即表示...
│ pom.xml │ pom.xml~ │ text.txt │ ├─.settings │ org.maven.ide.eclipse.prefs │ ├─common │ │ .classpath │ │ .project │ │ pom.xml │ │ │ ├─.settings │ │ org.eclipse.jdt.core....
**struts.xml示例**: ```xml <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> ...
- 解析:第一种方式是直接指定配置文件的具体路径,第二种方式则是在类路径下查找所有以`application-`开头的XML文件作为配置文件。 #### 2. 使用ContextLoaderPlugIn加载Spring上下文 为了使Struts能够访问Spring...
SSH(Struts、Spring、Hibernate)是Java Web开发中经典的三大框架组合,它们协同工作,构建高效、松耦合的应用程序。在这个笔记中,我们将深入探讨如何在Web应用环境下使用Spring框架,特别是通过两种不同的方法:...
3.7.4 application对象应用示例 3.8 其他内置对象的应用 3.8.1 应答与请求的page对象 3.8.2 页面上下文的page Context对象 3.8.3 获取web.xml配置信息的config对象 3.8.4 获取异常信息的exception对象 3.9 实战检验 ...
由于题目中未提供具体的Struts配置示例,这里简单介绍下Struts的配置要点。 1. **Struts-config.xml**:用于定义ActionMapping、FormBean等元素。 2. **Action类**:实现业务逻辑处理。 3. **JSP页面**:展示数据和...
#### 代码示例与配置 - **数据库表创建**:如文件中的SQL语句所示,创建一个`wmmtest`表用于存储用户名和密码。 - **项目结构**:建立Java Web项目,包括实体类(如`User`),以及Struts2所需的库,如`commons-...
Spring的配置通常分为多个文件,如`applicationContext-action.xml`、`applicationContext-service.xml`、`applicationContext-dao.xml`和`applicationContext-common.xml`,分别对应Action层、Service层、DAO层和...
配置 Spring 的核心配置文件 application.xml,示例如下: ```xml <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=...
- 创建`spring.xml`或`application-context.xml`文件,用于定义Spring容器管理的bean。 - 示例代码: ```xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/...
3. **配置文件**:如struts.xml、hibernate.cfg.xml、application.properties或application.yml,用于配置SSH框架和Spring Boot。 4. **资源文件**:如图片、CSS样式表、JavaScript库等,用于美化和增强用户体验。 ...
本示例中使用的开发工具及环境配置如下: - **开发工具**:MyEclipse 5.1.0 GA - **服务器**:Tomcat 5.5 - **框架版本**:Struts 1.1、Spring 1.2、Hibernate 3.1 - **数据库**:SQL Server 2000 #### 三、项目...