本文主要簡單講解框架整合的思路。
1、Spring框架的搭建
創(chuàng)新互聯(lián)建站主營原陽網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā)公司,原陽h5微信平臺(tái)小程序開發(fā)搭建,原陽網(wǎng)站營銷推廣歡迎原陽等地區(qū)企業(yè)咨詢
這個(gè)很簡單,只需要web容器中注冊org.springframework.web.context.ContextLoaderListener,并指定spring加載配置文件,那么spring容器搭建完成。(當(dāng)然org.springframework的核心jar包需要引入)
當(dāng)然為了更加易用支持J2EE應(yīng)用,一般我們還會(huì)加上如下:
Spring監(jiān)聽HTTP請求事件:org.springframework.web.context.request.RequestContextListener
2、Spring MVC的搭建
首先我們知道Spring MVC的核心是org.springframework.web.servlet.DispatcherServlet,所以web容器中少不了它的注冊。(當(dāng)然org.springframework的web、mvc包及其依賴jar包需要引入)
同時(shí)為了更好使用MVC,spring-mvc.xml需要配置以下:
1)(可選)多部分請求解析器(MultipartResolver)配置,與上傳文件有關(guān) 需要類庫commons-io、commons-fileupload
2)(可選)本地化(LocaleResolver)配置
3)(可選)主題解析器(ThemeResolver)配置
4)(必選)處理器映射器(HandlerMapping)配置,可以配置多個(gè),一般采用RequestMappingHandlerMapping或者自定義
這里我們自定義了一個(gè)處理器映射器,繼承重寫RequestMappingHandlerMapping,支持@RequestMapping無需任何path參數(shù)自動(dòng)裝載類名或方法作為url路徑匹配。
CustomHandlerMapping實(shí)現(xiàn):@Override
br/>@Override
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);
/**
默認(rèn)不需要添加任何參數(shù)(如:/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)配置,可以配置多個(gè),主要是配置messageConverters,其主要作用是映射前臺(tái)傳參與handler處理方法參數(shù)。一般擴(kuò)展RequestMappingHandlerAdapter,或者自定義。如果我們需要json請求的處理,這里必須擴(kuò)展。同時(shí)我們需要注意的是日期格式的轉(zhuǎn)換。
另外Spring 4.2新特性,加之注解會(huì)自動(dòng)注入@ControllerAdvice,可以定義RequestBodyAdvice、ResponseBodyAdvice,可以更方便地在參數(shù)處理方面著手自定義。
6)(可選)處理器異常解析器(HandlerExceptionResolver)配置,可以配置多個(gè),配置Controller異常拋出后,我們是怎么樣處理的,一般需要日志或做反饋的可以自定義。
7)(可選)請求到視圖名翻譯器(RequestToViewNameTranslator)配置,RequestToViewNameTranslator可以在處理器返回的View為空時(shí)使用它根據(jù)Request獲得viewName。
8)(可選)視圖解析器(ViewResolver)配置,可以配置多個(gè),定義跳轉(zhuǎn)的文件的前后綴 ,視圖模式配置,主要針對@Controller返回ModelAndView的視圖路徑解析,動(dòng)給后面控制器的方法return的字符串 加上前綴和后綴,變成一個(gè) 可用的url地址 。
最后給Controller加入組件掃描吧,這樣減少xml配置,直接在Java代碼中加入注解即可。
3、Mybatis整合
整合mybatis到Spring框架,我們需要mybatis的jar包,及mybatis-spring整合jar包。然后在Spring容器中注冊配置org.mybatis.spring.SqlSessionFactoryBean(需要數(shù)據(jù)源,及指定Mybatis配置文件)及org.mybatis.spring.SqlSessionTemplate即可。