當前位置: 首頁>>代碼示例>>Java>>正文


Java RequestMappingHandlerMapping.setUseTrailingSlashMatch方法代碼示例

本文整理匯總了Java中org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping.setUseTrailingSlashMatch方法的典型用法代碼示例。如果您正苦於以下問題:Java RequestMappingHandlerMapping.setUseTrailingSlashMatch方法的具體用法?Java RequestMappingHandlerMapping.setUseTrailingSlashMatch怎麽用?Java RequestMappingHandlerMapping.setUseTrailingSlashMatch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping的用法示例。


在下文中一共展示了RequestMappingHandlerMapping.setUseTrailingSlashMatch方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: requestMappingHandlerMapping

import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; //導入方法依賴的package包/類
/**
 * We mention this in the book, but this helps to ensure that the intercept-url patterns prevent access to our
 * controllers. For example, once security has been applied for administrators try commenting out the modifications
 * to the super class and requesting <a
 * href="http://localhost:800/calendar/events/.html">http://localhost:800/calendar/events/.html</a>. You will
 * observe that security is bypassed since it did not match the pattern we provided. In later chapters, we discuss
 * how to secure the service tier which helps mitigate bypassing of the URL based security too.
 */
// FIXME: FInd out what this is and why it is here.
@Bean
public RequestMappingHandlerMapping requestMappingHandlerMapping() {
    RequestMappingHandlerMapping result = new RequestMappingHandlerMapping();
    result.setUseSuffixPatternMatch(false);
    result.setUseTrailingSlashMatch(false);
    return result;
}
 
開發者ID:PacktPublishing,項目名稱:Spring-Security-Third-Edition,代碼行數:17,代碼來源:WebMvcConfig.java

示例2: requestMappingHandlerMapping

import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; //導入方法依賴的package包/類
/**
 * Return a {@link RequestMappingHandlerMapping} ordered at 0 for mapping
 * requests to annotated controllers.
 */
@Bean
public RequestMappingHandlerMapping requestMappingHandlerMapping() {
	RequestMappingHandlerMapping handlerMapping = createRequestMappingHandlerMapping();
	handlerMapping.setOrder(0);
	handlerMapping.setInterceptors(getInterceptors());
	handlerMapping.setContentNegotiationManager(mvcContentNegotiationManager());
	handlerMapping.setCorsConfigurations(getCorsConfigurations());

	PathMatchConfigurer configurer = getPathMatchConfigurer();
	if (configurer.isUseSuffixPatternMatch() != null) {
		handlerMapping.setUseSuffixPatternMatch(configurer.isUseSuffixPatternMatch());
	}
	if (configurer.isUseRegisteredSuffixPatternMatch() != null) {
		handlerMapping.setUseRegisteredSuffixPatternMatch(configurer.isUseRegisteredSuffixPatternMatch());
	}
	if (configurer.isUseTrailingSlashMatch() != null) {
		handlerMapping.setUseTrailingSlashMatch(configurer.isUseTrailingSlashMatch());
	}
	if (configurer.getPathMatcher() != null) {
		handlerMapping.setPathMatcher(configurer.getPathMatcher());
	}
	if (configurer.getUrlPathHelper() != null) {
		handlerMapping.setUrlPathHelper(configurer.getUrlPathHelper());
	}

	return handlerMapping;
}
 
開發者ID:langtianya,項目名稱:spring4-understanding,代碼行數:32,代碼來源:WebMvcConfigurationSupport.java

示例3: requestMappingHandlerMapping

import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; //導入方法依賴的package包/類
/**
 * Return a {@link RequestMappingHandlerMapping} ordered at 0 for mapping
 * requests to annotated controllers.
 */
@Bean
@Override
public RequestMappingHandlerMapping requestMappingHandlerMapping() {
    PathMatchConfigurer configurer = new PathMatchConfigurer();
    configurePathMatch(configurer);
    RequestMappingHandlerMapping handlerMapping = new RequestMappingHandlerMapping();
    handlerMapping.setOrder(0);
    handlerMapping.setDetectHandlerMethodsInAncestorContexts(true);
    handlerMapping.setInterceptors(getInterceptors());
    handlerMapping.setContentNegotiationManager(mvcContentNegotiationManager());
    if (configurer.isUseSuffixPatternMatch() != null) {
        handlerMapping.setUseSuffixPatternMatch(configurer.isUseSuffixPatternMatch());
    }
    if (configurer.isUseRegisteredSuffixPatternMatch() != null) {
        handlerMapping.setUseRegisteredSuffixPatternMatch(configurer.isUseRegisteredSuffixPatternMatch());
    }
    if (configurer.isUseTrailingSlashMatch() != null) {
        handlerMapping.setUseTrailingSlashMatch(configurer.isUseTrailingSlashMatch());
    }
    if (configurer.getPathMatcher() != null) {
        handlerMapping.setPathMatcher(configurer.getPathMatcher());
    }
    if (configurer.getUrlPathHelper() != null) {
        handlerMapping.setUrlPathHelper(configurer.getUrlPathHelper());
    }
    return handlerMapping;
}
 
開發者ID:Kixeye,項目名稱:chassis,代碼行數:32,代碼來源:SpringMvcConfiguration.java

示例4: requestMappingHandlerMapping

import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; //導入方法依賴的package包/類
/**
 * ----------------------------- Basic Config -----------------------------
 */

@Bean
public RequestMappingHandlerMapping requestMappingHandlerMapping() {
	final RequestMappingHandlerMapping mapping = new RequestMappingHandlerMapping();
	mapping.setUseSuffixPatternMatch(false);
	mapping.setUseTrailingSlashMatch(false);
	return mapping;
}
 
開發者ID:Katharsas,項目名稱:GMM,代碼行數:12,代碼來源:ApplicationConfiguration.java

示例5: requestMappingHandlerMapping

import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; //導入方法依賴的package包/類
/**
 * We mention this in the book, but this helps to ensure that the intercept-url patterns prevent access to our
 * controllers. For example, once security has been applied for administrators try commenting out the modifications
 * to the super class and requesting <a
 * href="http://localhost:800/calendar/events/.html">http://localhost:800/calendar/events/.html</a>. You will
 * observe that security is bypassed since it did not match the pattern we provided. In later chapters, we discuss
 * how to secure the service tier which helps mitigate bypassing of the URL based security too.
 */
@Bean
@Override
public RequestMappingHandlerMapping requestMappingHandlerMapping() {
    RequestMappingHandlerMapping result = super.requestMappingHandlerMapping();
    result.setUseSuffixPatternMatch(false);
    result.setUseTrailingSlashMatch(false);
    return result;
}
 
開發者ID:v5developer,項目名稱:maven-framework-project,代碼行數:17,代碼來源:WebMvcConfig.java

示例6: requestMappingHandlerMapping

import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; //導入方法依賴的package包/類
/**
     * We mention this in the book, but this helps to ensure that the intercept-url patterns prevent access to our
     * controllers. For example, once security has been applied for administrators try commenting out the modifications
     * to the super class and requesting <a
     * href="http://localhost:800/calendar/events/.html">http://localhost:800/calendar/events/.html</a>. You will
     * observe that security is bypassed since it did not match the pattern we provided. In later chapters, we discuss
     * how to secure the service tier which helps mitigate bypassing of the URL based security too.
     */
    @Bean
    @Override
    public RequestMappingHandlerMapping requestMappingHandlerMapping() {
        RequestMappingHandlerMapping result = super.requestMappingHandlerMapping();
//        result.setUseSuffixPatternMatch(false);
        result.setUseTrailingSlashMatch(false);
        return result;
    }
 
開發者ID:v5developer,項目名稱:maven-framework-project,代碼行數:17,代碼來源:WebMvcConfig.java

示例7: requestMappingHandlerMapping

import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; //導入方法依賴的package包/類
@Bean
public RequestMappingHandlerMapping requestMappingHandlerMapping() {
  RequestMappingHandlerMapping handlerMapping = super.requestMappingHandlerMapping();
  handlerMapping.setUseSuffixPatternMatch(false);
  handlerMapping.setUseTrailingSlashMatch(false);
  return handlerMapping;
}
 
開發者ID:DNSBelgium,項目名稱:rdap,代碼行數:8,代碼來源:WebConfig.java


注:本文中的org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping.setUseTrailingSlashMatch方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。