- 浏览: 25251 次
- 性别:
- 来自: 青岛
文章分类
最新评论
web.xml
applicationContext.xml
ehcache.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> <display-name>springmvc3</display-name> <servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <description>指定配置文件路径</description> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcher</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> <filter> <filter-name>encoding-filter</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>encoding-filter</filter-name> <url-pattern>*.do</url-pattern> </filter-mapping> <error-page> <error-code>400</error-code> <location>/error.jsp</location> </error-page> <error-page> <error-code>404</error-code> <location>/error.jsp</location> </error-page> <error-page> <exception-type>java.lang.Exception</exception-type> <location>/error.jsp</location> </error-page> <welcome-file-list> <welcome-file>/index.do</welcome-file> </welcome-file-list> </web-app>
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:mvc="http://www.springframework.org/schema/mvc" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:ehcache="http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring" xsi:schemaLocation=" http://www.springframework.org/schema/aop classpath:/org/springframework/aop/config/spring-aop-3.2.xsd http://www.springframework.org/schema/beans classpath:/org/springframework/beans/factory/xml/spring-beans-3.0.xsd http://www.springframework.org/schema/context classpath:/org/springframework/context/config/spring-context-3.0.xsd http://www.springframework.org/schema/mvc classpath:/org/springframework/web/servlet/config/spring-mvc-3.2.xsd http://www.springframework.org/schema/tx classpath:/org/springframework/transaction/config/spring-tx-3.0.xsd http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring classpath:/com/googlecode/ehcache/annotations/ehcache-spring-1.1.xsd "> <!-- ===================================== 视图配置 ===================================== --> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean> <!-- ===================================== 注解驱动的配置 ===================================== --> <!-- <mvc:annotation-driven /> --> <context:component-scan base-package="com.gdie.forum" /> <!-- ===================================== 数据源和事务管理 ===================================== --> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="dm.jdbc.driver.DmDriver" /> <property name="url" value="jdbc:dm://192.168.20.65:5236" /> <property name="username" value="user" /> <property name="password" value="user" /> </bean> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true" /> <!--使用方式:在需要进行事务管理的方法上添加@Transactional(rollbackFor = Exception.class)--> <!-- ===================================== mybatis ===================================== --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <!--property name="configLocation" value="/WEB-INF/Mybatis-Configuration.xml" /--> <property name="mapperLocations"> <list> <value>classpath:com/gdie/forum/dataaccess/mybatis/dm/*.xml</value> </list> </property> </bean> <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate"> <constructor-arg index="0" ref="sqlSessionFactory" /> </bean> <!-- ===================================== AOP设置 ===================================== > <aop:config> <aop:aspect id="logAOP" ref="logAop"> <aop:pointcut expression="execution(* com.gdie.mvcdemo.controllers.*.*(..))" id="target"/> <aop:before method="methodTrace" pointcut-ref="target"/> <aop:around method="timeCost" pointcut-ref="target"/> </aop:aspect> </aop:config--> <!-- ===================================== 拦截器 ===================================== --> <mvc:interceptors> <mvc:interceptor> <mvc:mapping path="/forum/*.do" /> <mvc:mapping path="/thread/*.do"/> <mvc:mapping path="/index.do"/> <bean class="com.gdie.forum.interceptors.LoginInterceptor" /> </mvc:interceptor> </mvc:interceptors> <!-- ===================================== cache设置 ===================================== --> <ehcache:annotation-driven /> <ehcache:config cache-manager="cacheManager"> <ehcache:evict-expired-elements interval="60" /> </ehcache:config> <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="/WEB-INF/ehcache.xml" /> </bean> <!--使用方式:在得到需要缓存数据的方法上:@Cacheable(cacheName=Const.FORUM_CACHE) 在进行添加、删除、更新时,需要删除缓存,否则显示的结果没有变化 @TriggersRemove(cacheName=Const.FORUM_CACHE, removeAll=true) 其中Const.FORUM_CACHE在缓存配置文件ehcache.xml中配置 Const为自定义的存放静态变量的类 --> <!-- ===================================== Hibernate设置 ===================================== --> <!-- 定义Hibernate的SessionFactory --> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource"> <ref local="dataSource" /> </property> <property name="mappingDirectoryLocations"> <list> <value>classpath:com/lzw/model</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.SQLServerDialect </prop> <prop key="hibernate.show_sql">true</prop> </props> </property> </bean> <!-- 定义Hibernate的事务管理器 --> <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory"> <ref local="sessionFactory" /> </property> </bean> <!--定义一个事物通知txAdvice,配置事物的传播特性--> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <!--所有以browse\list\load\get\is开头的业务逻辑方法均不需要事物控制且只读--> <tx:method name="browse*" propagation="NOT_SUPPORTED" read-only="true"/> <tx:method name="list*" propagation="NOT_SUPPORTED" read-only="true"/> <tx:method name="load*" propagation="NOT_SUPPORTED" read-only="true"/> <tx:method name="get*" propagation="NOT_SUPPORTED" read-only="true"/> <tx:method name="is*" propagation="NOT_SUPPORTED" read-only="true"/> <!--设置所有方法均进行事物控制,如果当前没有事物,则新建一个事物--> <tx:method name="*" propagation="REQUIRED"/> </tx:attributes> </tx:advice> <!--基于AOP技术的事物管理实现--> <aop:config> <!--定义一个事务切入点,拦截com.company.service.impl包中所有类的所有方法--> <aop:pointcut id="transactionPointcut" expression="execution(* com.company.service.impl.*.*(..))"/> <!--引用txAdvice事务通知--> <aop:advisor advice-ref="txAdvice" pointcut-ref="transactionPointcut"/> </aop:config> </beans>
ehcache.xml
<?xml version="1.0" encoding="UTF-8"?> <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true" monitoring="autodetect" dynamicConfig="true"> <diskStore path="java.io.tmpdir"/> <transactionManagerLookup class="net.sf.ehcache.transaction.manager.DefaultTransactionManagerLookup" properties="jndiName=java:/TransactionManager" propertySeparator=";"/> <cacheManagerEventListenerFactory class="" properties=""/> <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory" properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1, multicastGroupPort=4446, timeToLive=1" propertySeparator="," /> <cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"/> <defaultCache maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" diskSpoolBufferSizeMB="30" maxElementsOnDisk="10000000" diskPersistent="false" diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU" statistics="false" /> <cache name="forumCache" maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" diskSpoolBufferSizeMB="30" maxElementsOnDisk="10000000" diskPersistent="false" diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU" statistics="false" /> <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"/> <bootstrapCacheLoaderFactory class="net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory"/> </cache> </ehcache>
相关推荐
- **关键文件**:web.xml(SpringMVC和iBatis的启动配置)、servlet-context.xml(SpringMVC的配置)、SqlMapConfig.xml(iBatis的配置)。 5. **实践应用** - **案例**:在MyEclipse中导入SpringMVCIbatis项目,...
综上所述,这个"springMVC3.2+Hibernate4的基本配置"项目包含了一个完整的Web应用开发环境,包括SpringMVC的请求处理、Hibernate的数据持久化、C3P0连接池管理、事务控制、缓存优化以及自定义拦截器。这个配置模板...
3. **配置iBatis**:创建SqlSessionFactoryBean,配置数据源、MyBatis的配置文件路径等。例如: ```xml ``` 4. **定义Mapper接口和XML配置**:在iBatis中,定义Mapper接口,并在XML文件中编写SQL语句。...
Spring、SpringMVC和iBatis是Java开发中常见的三个框架,它们的整合使用能构建出功能强大的Web应用。这个"spring+springmvc+ibatis整合小案例"旨在为初学者提供一个清晰的实践指导,帮助理解这三者如何协同工作。 ...
SpringMVC和iBatis的集成可以通过Spring的DataSource、SqlSessionFactoryBean等配置实现,这样可以让Spring管理iBatis的生命周期,提供事务控制等高级功能。 在提供的压缩包文件中提到的"Velocity"可能是Velocity...
在SpringMVC+Spring+Ibatis的架构中,多数据源配置是一项重要特性。这允许应用连接到多个数据库,根据业务需求选择合适的数据库进行操作。在Spring中,可以通过DataSourceRouter或AbstractRoutingDataSource实现动态...
1. **配置文件**:如`spring-context.xml`用于配置SpringMvc和iBatis,`mybatis-config.xml`用于配置iBatis的基本设置。 2. **实体类(Entity)**:例如User类,代表数据库中的表结构。 3. **Mapper接口和XML映射...
这本书详细介绍了Spring 3.2版本的各个模块和功能,包括依赖注入、事务管理、数据访问、Web应用以及AOP等。通过阅读,你可以了解到如何配置和使用Spring的核心特性,以及如何将这些特性整合到你的项目中,提升代码的...
通过源码,你可以看到如何配置Spring的ApplicationContext,SpringMVC的DispatcherServlet,以及如何在Hibernate中设置实体类和映射文件,理解数据访问对象(DAO)和业务服务层的设计模式。 6. **实践应用**:在...
4. **拦截器**:SpringMVC中的拦截器可以对请求进行预处理和后处理,如权限验证、日志记录等。 5. **视图解析**:视图解析器如InternalResourceViewResolver负责将逻辑视图名转换为实际的视图资源,例如JSP页面。 ...
标题中的"springmvc_hibernate_ibatis_jdbc"指的是一个整合了SpringMVC、Hibernate、iBatis和JDBC这四种关键技术的Java应用框架。这个框架旨在提供一个全面且强大的解决方案,便于开发人员进行Web应用程序的构建。 ...
Spring MVC、iBatis、Hibernate、Spring 和 Bootstrap 是在 Web 开发中广泛使用的五种关键技术。下面将分别介绍这些框架的核心概念、它们的功能以及如何协同工作。 1. Spring MVC(模型-视图-控制器): Spring MVC...
基于springmvc与ibatis 整合的swt/jface实现一键化自动生成 model、dao、service代码 以及spring web配置文件,并实现了事务。此工具源码请关注https://gitee.com/00fly/springmvc_ibatis_plus
2. **配置Spring**:创建Spring的配置文件,配置Bean、数据源、事务管理器等,以及SpringMVC的配置,如视图解析器、模型-视图-适配器(MVA)配置。 3. **配置SpringMVC**:设置DispatcherServlet,配置...
压缩包里有两个 springMVC+Ibatis 的项目:HessianServer(服务器端),HessianClient(客户端),解压导入到MyEclipse 更改配置文件中的数据源,建表(和实体类对应的表),执行客户端中的BasicClient.java文件即可...
Spring MVC、iBatis、Hibernate、Spring 和 Bootstrap 是在 Web 开发中广泛使用的五种技术。下面将分别介绍这些框架的核心概念、功能以及它们如何协同工作。 **Spring MVC** Spring MVC 是 Spring 框架的一个模块,...
最近,想自己搭建一个是spring+springMVC+mybatis的框架,搭建过程中遇到了一些问题,主要是ibatis和mybatis用法上当不同,进而决定先搭建关于ibatis的,然后再搭建mybatis的(附源码)
在提供的压缩包中,"springMVC"可能包含了SpringMVC的配置文件、控制器类、服务接口及实现、DAO层代码,以及与iBatis相关的Mapper配置和XML SQL脚本。同时,还可能有EasyUI的HTML模板、CSS样式和JavaScript代码,...
SpringMVC、iBatis和Log4j是Java Web开发中的三个重要组件,它们共同构建了一个高效、灵活的Web应用程序架构。在这个“纯净版SpringMVC+Ibatis+log4j环境”中,我们将深入探讨这三个组件的核心概念、功能以及它们...