个人有点侧重于性能,于是就想着把hibernate替换为JDBC,但是J2EE的jdbc还要额外的控制事物,就换成了spring容器封装好的jdbc,有不对的地方还请大家指出来,小弟在此谢过了。
这里有两个配置文件web.xml和ApplicationContext.xml,至于Struts2的配置文件很简单就没有拿出来,还是按照常规的MVC模式。我写的大致是dao,service,action,entity。
这是ApplicationContext.xml
<?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:context="http://www.springframework.org/schema/context"
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-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd " default-autowire="byName" default-lazy-init="true">
<!-- 隐式地向 Spring容器注册:AutowiredAnnotationBeanPostProcessor、CommonAnnotationBeanPostProcessor、PersistenceAnnotationBeanPostProcessor、RequiredAnnotationBeanPostProcessor这 4 个BeanPostProcessor注解处理器。-->
<context:annotation-config/>
<!-- 扫描包下的类,含子包 -->
<context:component-scan base-package="com"/>
<!-- 基于命名空间的配置加载properties配置文件,Spring容器仅允许最多定义一个PropertyPlaceholderConfigurer(或<context:property-placeholder/>),其余的会被Spring忽略掉。写多个请参照下面写法-->
<context:property-placeholder location="classpath*:*.properties"/>
<!-- 使用apache自己的dbcp数据源产品 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${driverClassName}"></property>
<property name="url" value="${url}"></property>
<property name="username" value="${username}"></property>
<property name="password" value="${password}"></property>
<property name="maxActive" value="${maxActive}"></property>
<property name="maxIdle" value="${maxIdle}"></property>
<property name="minIdle" value="${minIdle}"></property>
<property name="initialSize" value="${initialSize}"></property>
</bean>
<!-- 如果数据访问层使用jdbc来实现,请添加spring封装的jdbcTemplate模板,使用依赖注入特性注入数据源 -->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!-- 如果数据访问层使用hibernate实现,请添加如下以用于读取hibernate配置文件作为数据源-->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation"
value="classpath:hibernate.cfg.xml">
</property>
</bean>
<!-- 如果使用了@Transactional注解,请添加如下的JDBC事务管理器声明-->
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!-- 如果使用了AOP,请使用如下事物管理器声明 -->
<tx:advice id="……" transaction-manager="……">
<tx:attributes>
<tx:method name="*"
propagation="REQUIRED"
isolation="DEFAULT"
timeout="-1"
read-only="true"
no-rollback-for=""
rollback-for="java.lang.Exception"/>
</tx:attributes>
</tx:advice>
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="save*" propagation="REQUIRED" />
<tx:method name="add*" propagation="REQUIRED" />
<tx:method name="create*" propagation="REQUIRED" />
<tx:method name="insert*" propagation="REQUIRED" />
<tx:method name="update*" propagation="REQUIRED" />
<tx:method name="merge*" propagation="REQUIRED" />
<tx:method name="del*" propagation="REQUIRED" />
<tx:method name="remove*" propagation="REQUIRED" />
<tx:method name="put*" propagation="REQUIRED" />
<tx:method name="get*" propagation="SUPPORTS" read-only="true" />
<tx:method name="count*" propagation="SUPPORTS" read-only="true" />
<tx:method name="find*" propagation="SUPPORTS" read-only="true" />
<tx:method name="list*" propagation="SUPPORTS" read-only="true" />
<tx:method name="*" propagation="SUPPORTS" read-only="true" />
<tx:method name="batchSaveOrUpdate" propagation="REQUIRES_NEW" />
</tx:attributes>
</tx:advice>
<aop:config>
<aop:pointcut id="txPointcut" expression="execution(* cn.javass..service.*.*(..))" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut" />
</aop:config>
<!-- 这是@Transactional注解的驱动,是基于注解的方式使用事务配置声明-->
<tx:annotation-driven transaction-manager="txManager"/>
</beans>
web.xml部署描述符参数配置
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
在Base或者Common层的类添加不好归类的泛指组件注解:@Component
在Dao层的实现类加数据访问层注解:@Repository
在Service层的实现类加业务层注解:@Service,@Transactional
在Controller层的Action上加控制器注解:@Controller
如果是用注解而非AOP事物的情况下则使用注解:@Transactional
@Transactional(propagation=Propagation.NOT_SUPPORTED,readOnly=true)
注意这里:当在Service层标注@Transactional这个注解时默认所有的方法都开启事物,这样在性能上会打折扣同时数据库压力会越来越大,请在查询方法上添加,该注解是对查询不启用事物。
这是注解的Spring3+Struts2.1+SpringJDBC,
分享到:
相关推荐
总的来说,Spring、Struts2和iBatis的整合为Java Web开发提供了一个强大、灵活的解决方案,让开发者能够更专注于业务逻辑,而不是框架的底层实现。通过合理的配置和使用这个jar包,开发者可以快速构建出稳定、高性能...
SSH(Spring、Struts2、Hibernate)是Java开发中一种常见的企业级应用框架组合,用于构建高效、可扩展的Web应用程序。在这个包中,我们包含了Spring4、Struts2和Hibernate5这三个关键组件的库文件。 Spring4是...
标题 "ext2.0+struts2.1+spring2.0+jdbc框架" 提到的是一个基于Java的Web开发架构,它结合了四个关键组件:EXT JS的2.0版本,Struts2.1,Spring2.0,以及JDBC(Java Database Connectivity)。这个组合在早期的Web...
Spring、Struts2和MyBatis是Java Web开发中非常流行的三大开源框架,它们各司其职,共同构建了一个高效、灵活的企业级应用框架。在这个"Spring+Struts2+MyBatis完整框架"中,我们可以看到这三者是如何协同工作的。 ...
综上所述,这个实例项目展示了如何在Java Web环境中集成Spring、Struts2和MyBatis框架,通过Struts2的拦截器实现特定业务逻辑,利用Log4j进行日志记录,以及Spring如何管理整个应用程序的生命周期和数据访问。...
1. src/main/java:存放Java源代码,包括控制器(Struts2 Actions)、模型(业务对象)、服务(Spring Beans)、DAO(MyBatis映射接口和实现)等。 2. src/main/resources:放置配置文件,如Spring的bean配置、...
这个压缩包文件 "mybatis3+spring4+struts2.3" 很可能包含了这三者集成所需的配置文件(如struts.xml、spring配置文件、mybatis的mapper配置等)、Java源代码(Action、Mapper接口及其实现、DAO等)以及相关的jar...
综上所述,这个项目是一个集成了前端EXTJS组件展示、Struts2处理业务逻辑、Spring管理依赖和事务、JDBC与数据库交互,并通过JSON进行数据传输的典型Java Web应用。开发者通过这些技术的组合,实现了高效、灵活的Web...
本项目"maven+struts2+spring+mybatis+springMVC"就是一个典型的Java Web应用开发组合,利用了这些框架的优势进行集成,实现了数据持久化、业务逻辑处理、视图展示以及依赖管理等多个层面的功能。 首先,我们来详细...
具体来说,Spring可以通过其的ApplicationContext加载Struts的Action和DAO类,这样可以实现对这些组件的依赖注入,提高灵活性。同时,Spring的事务管理可以跨多个服务(包括Struts的Action和Hibernate的DAO)进行...
对于Struts2,其核心组件Action、Interceptor等与Spring的集成方式类似,主要是通过Spring的依赖注入(DI)和AOP实现控制层与业务层的解耦。在实际项目中,开发者可以根据具体需求调整配置,以实现最佳的框架整合...
"maven+spring3+struts2+hibernate4+mybatis3整合"是一个常见的Java Web开发组合,它们各自扮演着不同的角色,协同工作以提供全面的功能。 首先,Maven是一个项目管理工具,它负责构建、依赖管理和项目信息管理。...
在Struts2+Spring+MyBatis的架构中,MyBatis负责与数据库交互,通过XML或注解方式配置SQL语句,使得数据库操作更加灵活且易于维护。 **整合过程** 1. **配置Spring**:创建Spring配置文件,定义Bean,包括Action、...
"ext3+struts2+hibernate+spring的CRUD+分页"是一个典型的Java Web开发组合,用于实现全面的数据管理功能。这个组合充分利用了各个框架的优势,提供了一个强大的后端数据处理和前端展示的解决方案。 首先,EXT3是一...
3. **AOP整合**:Spring的AOP可与Struts2的拦截器协同工作,如添加统一的异常处理。 4. **数据源配置**:Spring管理数据源,Hibernate通过Spring获取DataSource,实现数据访问。 5. **ModelDriven或FormDriven模式**...
SSM框架,即Spring、Struts2和MyBatis的集成,是Java Web开发中常见的三大框架组合。这个框架组合提供了完整的控制层、业务层和数据访问层的解决方案,极大地提高了开发效率。下面将详细解释这三个框架的核心概念、...
1. **配置Spring**:设置Spring的配置文件,定义Bean的实例化规则,包括Struts2的Action类、Service层接口及其实现、iBatis的SqlSessionFactory和Mapper接口。 2. **配置Struts2**:配置struts.xml文件,定义Action...
这个例子展示了如何将Hibernate、Spring和Struts三大框架整合,实现一个完整的MVC架构的Web应用。这样的整合不仅简化了开发流程,也提高了代码的可维护性和复用性。在实际开发中,开发者可以根据项目需求进一步扩展...
1. 配置文件:如`struts.xml`(Struts2配置)、`applicationContext.xml`(Spring配置)、`hibernate.cfg.xml`(Hibernate配置)等。 2. 实体类(Entity):包含了数据库表对应的Java类,使用了Hibernate注解。 3. ...
标题 "EJB3+Spring2.5+Struts2和EJB3+Servlet实现增删改查" 描述了一个集成的Java企业级应用开发场景,其中涵盖了四个关键的技术框架:Enterprise JavaBeans(EJB)3.0、Spring 2.5、Struts 2以及Servlet。...