1. 程式人生 > >Spring4+SpringMVC+MyBatis整合思路

Spring4+SpringMVC+MyBatis整合思路

容器 getc lte nal 自定義 object eof supported instance

本文主要簡單講解框架整合的思路。
1、Spring框架的搭建

這個很簡單,只需要web容器中註冊org.springframework.web.context.ContextLoaderListener,並指定spring加載配置文件,那麽spring容器搭建完成。(當然org.springframework的核心jar包需要引入)

當然為了更加易用支持J2EE應用,一般我們還會加上如下:

Spring監聽HTTP請求事件:org.springframework.web.context.request.RequestContextListener

contextConfigLocation
classpath*:webconfig/service-all.xml
org.springframework.web.context.ContextLoaderListener org.springframework.web.context.request.RequestContextListener org.springframework.web.util.IntrospectorCleanupListener encodingFilter org.springframework.web.filter.CharacterEncodingFilter
encoding UTF-8 forceEncoding false
encodingFilter /* 2、Spring MVC的搭建 首先我們知道Spring MVC的核心是org.springframework.web.servlet.DispatcherServlet,所以web容器中少不了它的註冊。(當然org.springframework的web、mvc包及其依賴jar包需要引入) Spring-MVC org.springframework.web.servlet.DispatcherServlet
contextConfigLocation classpath*:spring/spring-mvc.xml 1
Spring-MVC *.do 同時為了更好使用MVC,spring-mvc.xml需要配置以下: 1)(可選)多部分請求解析器(MultipartResolver)配置,與上傳文件有關 需要類庫commons-io、commons-fileupload 2)(可選)本地化(LocaleResolver)配置 3)(可選)主題解析器(ThemeResolver)配置 4)(必選)處理器映射器(HandlerMapping)配置,可以配置多個,一般采用RequestMappingHandlerMapping或者自定義 這裏我們自定義了一個處理器映射器,繼承重寫RequestMappingHandlerMapping,支持@RequestMapping無需任何path參數自動裝載類名或方法作為url路徑匹配。 CustomHandlerMapping實現: @Override protected RequestMappingInfo getMappingForMethod(Method method, Class handlerType) { RequestMappingInfo info = createRequestMappingInfoDefault(method); if (info != null) { RequestMappingInfo typeInfo = createRequestMappingInfoDefault(handlerType); if (typeInfo != null) info = typeInfo.combine(info); } return info; } private RequestMappingInfo createRequestMappingInfoDefault(AnnotatedElement element) { RequestMapping requestMapping = AnnotatedElementUtils.findMergedAnnotation(element, RequestMapping.class); RequestCondition condition = (element instanceof Class) ? getCustomTypeCondition((Class) element) : getCustomMethodCondition((Method) element); /** * 以類名和方法名映射請求,參照@RequestMapping * 默認不需要添加任何參數(如:/className/methodName.do) */ String defaultName = (element instanceof Class) ? ((Class) element).getSimpleName() : ((Method) element).getName(); return requestMapping == null ? null : createRequestMappingInfo(requestMapping, condition, defaultName); } protected RequestMappingInfo createRequestMappingInfo(RequestMapping annotation, RequestCondition customCondition, String defaultName) { String[] patterns = resolveEmbeddedValuesInPatterns(annotation.value()); if (patterns != null && (patterns.length == 0)) { patterns = new String[]{defaultName}; } return new RequestMappingInfo( new PatternsRequestCondition(patterns, getUrlPathHelper(), getPathMatcher(), this.useSuffixPatternMatch, this.useTrailingSlashMatch, this.fileExtensions), new RequestMethodsRequestCondition(annotation.method()), new ParamsRequestCondition(annotation.params()), new HeadersRequestCondition(annotation.headers()), new ConsumesRequestCondition(annotation.consumes(), annotation.headers()), new ProducesRequestCondition(annotation.produces(), annotation.headers(), this.contentNegotiationManager), customCondition); } 5)(必選)處理器適配器(HandlerAdapter)配置,可以配置多個,主要是配置messageConverters,其主要作用是映射前臺傳參與handler處理方法參數。一般擴展RequestMappingHandlerAdapter,或者自定義。如果我們需要json請求的處理,這裏必須擴展。同時我們需要註意的是日期格式的轉換。 另外Spring 4.2新特性,加之註解會自動註入@ControllerAdvice,可以定義RequestBodyAdvice、ResponseBodyAdvice,可以更方便地在參數處理方面著手自定義。 yyyy-MM-dd HH:mm:ss text/html;charset=UTF-8 application/json;charset=UTF-8 6)(可選)處理器異常解析器(HandlerExceptionResolver)配置,可以配置多個,配置Controller異常拋出後,我們是怎麽樣處理的,一般需要日誌或做反饋的可以自定義。 7)(可選)請求到視圖名翻譯器(RequestToViewNameTranslator)配置,RequestToViewNameTranslator可以在處理器返回的View為空時使用它根據Request獲得viewName。 8)(可選)視圖解析器(ViewResolver)配置,可以配置多個,定義跳轉的文件的前後綴 ,視圖模式配置,主要針對@Controller返回ModelAndView的視圖路徑解析,動給後面控制器的方法return的字符串 加上前綴和後綴,變成一個 可用的url地址 。 最後給Controller加入組件掃描吧,這樣減少xml配置,直接在Java代碼中加入註解即可。 3、Mybatis整合 整合mybatis到Spring框架,我們需要mybatis的jar包,及mybatis-spring整合jar包。然後在Spring容器中註冊配置org.mybatis.spring.SqlSessionFactoryBean(需要數據源,及指定Mybatis配置文件)及org.mybatis.spring.SqlSessionTemplate即可。

Spring4+SpringMVC+MyBatis整合思路