当前位置: 首页>>代码示例>>Java>>正文


Java RequestMethod.OPTIONS属性代码示例

本文整理汇总了Java中org.springframework.web.bind.annotation.RequestMethod.OPTIONS属性的典型用法代码示例。如果您正苦于以下问题:Java RequestMethod.OPTIONS属性的具体用法?Java RequestMethod.OPTIONS怎么用?Java RequestMethod.OPTIONS使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.springframework.web.bind.annotation.RequestMethod的用法示例。


在下文中一共展示了RequestMethod.OPTIONS属性的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: handleResultsYML

@RequestMapping(value = "/**", method = RequestMethod.OPTIONS, produces = "application/x-yaml")
public Object handleResultsYML(HttpServletRequest request) {
	CollectionResources resource = handleResultsJson(request, Optional.empty());
	return new RamlBuilder(resource).build();

}
 
开发者ID:damianwajser,项目名称:spring-rest-commons-options,代码行数:6,代码来源:OptionsController.java

示例2: doOptions

/**
 * Options for endpoint
 * @param response
 * @return the options
 */
@RequestMapping(method= RequestMethod.OPTIONS)
public @ResponseBody
EndpointOptions doOptions(HttpServletResponse response) {
	response.setHeader("Allow", options.getAllowedMethods());
	return options;
}
 
开发者ID:marrow16,项目名称:ColorConverter,代码行数:11,代码来源:AbstractColorEndpoint.java

示例3: doOptions

/**
 * Options for endpoint
 * @param response
 * @return
 */
@RequestMapping(method= RequestMethod.OPTIONS)
public @ResponseBody EndpointOptions doOptions(HttpServletResponse response) {
	response.setHeader("Allow", options.getAllowedMethods());
	return options;
}
 
开发者ID:marrow16,项目名称:ColorConverter,代码行数:10,代码来源:RootEndpoint.java

示例4: requestMappingUnprotectedAndProtectedUncommonMethods

/**
 * Mapping to several HTTP request methods is not OK if it's a mix of unprotected and protected HTTP request methods.
 */
@RequestMapping(value = "/request-mapping-unprotected-and-protected-uncommon-methods", method = {RequestMethod.OPTIONS, RequestMethod.PATCH})
public void requestMappingUnprotectedAndProtectedUncommonMethods() {
}
 
开发者ID:blackarbiter,项目名称:Android_Code_Arbiter,代码行数:6,代码来源:UnsafeSpringCsrfRequestMappingController.java

示例5: requestMappingAllUnprotectedMethodsAndOneProtectedMethod

/**
 * Mapping to several HTTP request methods is not OK if it's a mix of unprotected and protected HTTP request methods.
 */
@RequestMapping(value = "/request-mapping-all-unprotected-methods-and-one-protected-method",
        method = {RequestMethod.GET, RequestMethod.HEAD, RequestMethod.TRACE, RequestMethod.OPTIONS, RequestMethod.PATCH})
public void requestMappingAllUnprotectedMethodsAndOneProtectedMethod() {
}
 
开发者ID:blackarbiter,项目名称:Android_Code_Arbiter,代码行数:7,代码来源:UnsafeSpringCsrfRequestMappingController.java

示例6: requestMappingAllProtectedMethodsAndOneUnprotectedMethod

/**
 * Mapping to several HTTP request methods is not OK if it's a mix of unprotected and protected HTTP request methods.
 */
@RequestMapping(value = "/request-mapping-all-protected-methods-and-one-unprotected-method",
        method = {RequestMethod.POST, RequestMethod.PUT, RequestMethod.DELETE, RequestMethod.PATCH, RequestMethod.OPTIONS})
public void requestMappingAllProtectedMethodsAndOneUnprotectedMethod() {
}
 
开发者ID:blackarbiter,项目名称:Android_Code_Arbiter,代码行数:7,代码来源:UnsafeSpringCsrfRequestMappingController.java

示例7: requestMappingOptions

/**
 * Mapping to the HTTP request method `OPTIONS` is safe as long as no state-changing operations are performed within this method.
 */
@RequestMapping(value = "/request-mapping-options", method = RequestMethod.OPTIONS)
public void requestMappingOptions() {
}
 
开发者ID:blackarbiter,项目名称:Android_Code_Arbiter,代码行数:6,代码来源:SafeSpringCsrfRequestMappingController.java

示例8: requestMappingSeveralUnprotectedMethods

/**
 * Mapping to several HTTP request methods is fine as long as all the HTTP request methods used are unprotected.
 */
@RequestMapping(value = "/request-mapping-several-unprotected-methods",
        method = {RequestMethod.GET, RequestMethod.HEAD, RequestMethod.TRACE, RequestMethod.OPTIONS})
public void requestMappingSeveralUnprotectedMethods() {
}
 
开发者ID:blackarbiter,项目名称:Android_Code_Arbiter,代码行数:7,代码来源:SafeSpringCsrfRequestMappingController.java


注:本文中的org.springframework.web.bind.annotation.RequestMethod.OPTIONS属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。