gpt4 book ai didi

java - 值 org.springframework.web.bind.annotation.RequestMapping 中的 `.+` 是什么意思?

转载 作者:行者123 更新时间:2023-12-02 04:23:14 25 4
gpt4 key购买 nike

我正在学习mkyong spring example 。这是@RequestMapping的用法:

 @RequestMapping(value = "/hello/{name:.+}", method = RequestMethod.GET)

.+ 是什么意思?它是否是 name PathVariable 值的正则表达式?

最佳答案

值中的name表示您放入参数中的变量名称。 .+ 表示该变量将接受一个或多个字符。

示例:

@RequestMapping(value="/{textualPart:[a-z-]+}.{numericPart:[\\d]+}")
public String regularExpression(@PathVariable String textualPart,@PathVariable String numericPart)

给定网址 - /sometext.123,变量 textualPart 将具有值 sometext,而另一个变量将具有值 123

关于java - 值 org.springframework.web.bind.annotation.RequestMapping 中的 `.+` 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32515048/

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