Spring rest端点层次结构

mlmc2os5  于 2023-08-04  发布在  Spring
关注(0)|答案(1)|浏览(101)

我有两个端点@RestMapping(“/endpoint 1”)和@RestMapping(“/endpoint 1/subpoint 1”),但无法更改此端点,以便我可以有@RestMapping(“/endpoint 1”),然后有@RestMapping(“/subpoint 1”),这样subpoint 1仍然是“/endpoint 1/subpoint 1”?

3htmauhk

3htmauhk1#

根据我的理解,我尝试了一个样品在我的当地与相同。请您尝试下面的代码一次。两个都行

http://localhost:8080/endpoint1 
http://localhost:8080/endpoint1/subpoint1

个字符

相关问题