1、Spring框架的搭建

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

Spring4+Spring MVC+MyBatis整合思路

當然爲了更加易用支持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路徑匹配。

class="io.flysium.framework.web.servlet.mvc.method.annotation.CustomHandlerMapping">

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,可以更方便地在參數處理方面着手自定義。

class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">

class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">

class="org.springframework.format.support.FormattingConversionServiceFactoryBean">

class="org.springframework.http.converter.json.Jackson2ObjectMapperFactoryBean">

static-field="com.fasterxml.jackson.databind.SerializationFeature.WRITE_DATES_AS_TIMESTAMPS" />

yyyy-MM-dd HH:mm:ss

class="io.flysium.framework.http.converter.json.CustomJackson2HttpMessageConverter">

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地址 。

class="org.springframework.web.servlet.view.InternalResourceViewResolver">

value="org.springframework.web.servlet.view.JstlView" />

最後給Controller加入組件掃描吧,這樣減少xml配置,直接在Java代碼中加入註解即可。

expression="org.springframework.stereotype.Controller" />

expression="org.springframework.web.bind.annotation.RestController" />

expression="org.springframework.web.bind.annotation.ControllerAdvice" />

3、Mybatis整合

整合mybatis到Spring框架,我們需要mybatis的jar包,及mybatis-spring整合jar包。然後在Spring容器中註冊配置org.mybatis.spring.SqlSessionFactoryBean(需要數據源,及指定Mybatis配置文件)及org.mybatis.spring.SqlSessionTemplate即可。

更多整合請參照Git項目:https://git.oschina.net/svenaugustus/app-ss4m-less

目前除了ssm,另外整合redis(支持切換單節點配置、主從哨兵配置,集羣配置)、spring session方案。

其中包括spring MVC的簡單demo,用於學習交流。

Spring4+Spring MVC+MyBatis整合思路


作者:斯武丶風晴

原文:https://my.oschina.net/langxSpirit/blog/877396

相关文章