- 浏览: 16761 次
- 性别:
- 来自: 沈阳
最新评论
springMVC对ibatis,hibernate,aop,缓存等的配置
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>
相关推荐
Spring MVC、iBatis、Hibernate、Spring 和 Bootstrap 是在 Web 开发中广泛使用的五种技术。下面将分别介绍这些框架的核心概念、功能以及它们如何协同工作。 **Spring MVC** Spring MVC 是 Spring 框架的一个模块,...
本文将深入探讨如何利用EXTJS4开发任务调度管理系统,并结合SpringMVC、iBatis、Hibernate和Spring等技术进行后端整合,打造高效稳定的企业级应用。 首先,EXTJS4的核心在于其组件化的设计理念。在任务调度管理系统...
- **Web开发**:熟练使用Spring、SpringMVC、iBatis、Hibernate等主流框架,熟悉基于MVC模式的开发,能搭建SSM/SSH框架,以及SpringBoot应用。 - **前端技术**:掌握HTML5、CSS、JavaScript、JQuery、Ajax等,能...
MyBatis 是一个持久层框架,它允许开发者编写SQL语句并与Java对象直接映射,避免了传统的Hibernate或iBatis中的XML配置。MyBatis 3.2 版本优化了动态SQL,增强了缓存功能,并修复了一些已知的bug,提高了整体的性能...
这些模块涵盖了对JDBC、Hibernate、JPA、JDO和iBatis等ORM框架的支持,以及对XML、JSON等数据格式的转换支持。 - Web模块:支持创建Web应用程序,包括Spring Web MVC, Web-Servlet, Web-Struts, Web-Portlet模块。...
面试者可能需要回答他们使用过的持久层框架,例如Hibernate、MyBatis、iBatis等。 3. Hibernate框架中,SessionFactory是线程安全的,而Session不是线程安全的。因此,不能在一个Session实例上让多个线程共享操作。...
iBATIS开源主流框架(实现半自动化hibernate) 企业实用技能之详解(眼睛横纹模式验证码防止恶意登陆) 动态页面的静态化处理 图片上传技术 在springMVC中实现原始的Excel文件下载方式 企业级分布式缓存技术之(redis详解...
org.springframework.context-3.0.0.M4.jar: 提供在基础IoC功能上的扩展服务,此外还提供许多企业级服务的支持,如邮件服务、任务调度、JNDI定位、EJB集成、远程访问、缓存以及各种视图层框架的封装等 org.spring...
Hibernate、Ibatis、Jdbc三者的区别:Hibernate和Ibatis都是JDBC的封装框架,但Hibernate是全自动的ORM映射,而Ibatis是半自动的。 Hibernate的运行原理:Hibernate通过映射关系将Java对象和数据库表进行映射。 ...
org.springframework.context-3.0.0.M4.jar: 提供在基础IoC功能上的扩展服务,此外还提供许多企业级服务的支持,如邮件服务、任务调度、JNDI定位、EJB集成、远程访问、缓存以及各种视图层框架的封装等 org.spring...
4.1.2spring对aop的支持 4.2创建典型的spring切面 4.2.1创建通知 4.2.2定义切点和通知者 4.2.3使用proxyfactorybean 4.3自动代理 4.3.1为spring切面创建自动代理 4.3.2自动代理@aspectj切面 4.4定义纯粹的...
这些功能的实现都需要对SSM框架有深入的掌握,并且需要考虑到系统的安全性和稳定性,例如,通过拦截器进行权限控制,通过缓存优化性能,以及使用日志记录系统运行状态等。 此外,为了提供个性化服务,系统可能采用...
MySQL数据库,C3P0连接池,Hibernate的Valida注解,Jquery前端校验,Redis集群缓存,Solr全文检索,ActiveMQ消息队列,SpringAOP行为记录,EasyUI后台界面设计,POIExcel导出,JUnit单元测试,Echarts数据展示等。...
Java面试题56.ibatis和hibernate有什么不同 Java面试题57.hibernate对象状态及其转换 Java面试题58:hibernate的缓存 Java面试题59.webservice的使用场景 Java面试题60.activiti的简单介绍 Java面试题61.linux的使用...
- **配置文件**:配置拦截器栈、结果类型等。 ##### Struts2中result中的type类型 - **dispatcher**:将请求转发给指定页面。 - **chain**:执行另一个action。 - **redirect**:客户端重定向到指定URL。 - **...
│ Java面试题56.ibatis和hibernate有什么不同.mp4 │ Java面试题57.hibernate对象状态及其转换.mp4 │ Java面试题58:hibernate的缓存.mp4 │ Java面试题59.webservice的使用场景.mp4 │ Java面试题60.Activiti的...
Hibernate和iBatis都是Java持久层框架,但Hibernate是基于ORM的,而iBatis是基于SQL的。 2. 讲讲mybatis的连接池。 MyBatis是Java持久层框架,提供了连接池机制来提高性能。 3. spring框架中需要引用哪些jar包,...