gpt4 book ai didi

regex - Spring-Boot @RequestMapping 和@PathVariable 正则表达式匹配

转载 作者:行者123 更新时间:2023-12-03 21:44:51 27 4
gpt4 key购买 nike

我正在尝试将 WebJars-Locator 与 Spring-Boot 应用程序结合使用来映射 JAR 资源。根据他们的 website ,我创建了一个这样的 RequestMapping:

@ResponseBody
@RequestMapping(method = RequestMethod.GET, value = "/webjars-locator/{webjar}/{partialPath:.+}")
public ResponseEntity<ClassPathResource> locateWebjarAsset(@PathVariable String webjar, @PathVariable String partialPath)
{

问题在于 partialPath 变量应该包含第三个斜线之后的任何内容。然而,它最终做的是限制映射本身。此 URI 已正确映射:

http://localhost/webjars-locator/angular-bootstrap-datetimepicker/datetimepicker.js

但是这个根本没有映射到处理程序,只是返回 404:

http://localhost/webjars-locator/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.css

根本的区别只是路径中的组件数量,应该由正则表达式 (".+") 处理,但当该部分有斜杠时似乎不起作用。

如果有帮助,请在日志中提供:

2015-03-03 23:03:53.588 INFO 15324 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/webjars-locator/{webjar}/{partialPath:.+}],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public org.springframework.http.ResponseEntity app.controllers.WebJarsLocatorController.locateWebjarAsset(java.lang.String,java.lang.String) 2

Spring-Boot 中是否有某种类型的隐藏设置来启用 RequestMappings 上的正则表达式模式匹配?

最佳答案

文档中的原始代码没有为额外的斜线做好准备,对此深表歉意!

请尝试使用此代码:

@ResponseBody
@RequestMapping(value="/webjarslocator/{webjar}/**", method=RequestMethod.GET)
public ResponseEntity<Resource> locateWebjarAsset(@PathVariable String webjar,
WebRequest request) {
try {
String mvcPrefix = "/webjarslocator/" + webjar + "/";
String mvcPath = (String) request.getAttribute(
HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE, RequestAttributes.SCOPE_REQUEST);
String fullPath = assetLocator.getFullPath(webjar,
mvcPath.substring(mvcPrefix.length()));
ClassPathResource res = new ClassPathResource(fullPath);
long lastModified = res.lastModified();
if ((lastModified > 0) && request.checkNotModified(lastModified)) {
return null;
}
return new ResponseEntity<Resource>(res, HttpStatus.OK);
} catch (Exception e) {
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
}
}

我还将很快提供 webjar 文档的更新。

2015/08/05 更新:添加了 If-Modified-Since 处理

关于regex - Spring-Boot @RequestMapping 和@PathVariable 正则表达式匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28846639/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com